Codebase list rabit / upstream/0.0_git20201104.f307ace doc / sphinx_util.py
upstream/0.0_git20201104.f307ace

Tree @upstream/0.0_git20201104.f307ace (Download .tar.gz)

sphinx_util.py @upstream/0.0_git20201104.f307aceraw · history · blame

# -*- coding: utf-8 -*-
"""Helper utilty function for customization."""
import sys
import os
import docutils
import subprocess

if os.environ.get('READTHEDOCS', None) == 'True':
    subprocess.call('cd ..; rm -rf recommonmark;' +
                    'git clone https://github.com/tqchen/recommonmark', shell=True)

sys.path.insert(0, os.path.abspath('../recommonmark/'))
from recommonmark import parser, transform

MarkdownParser = parser.CommonMarkParser
AutoStructify = transform.AutoStructify