MkDocs fork with Docutils as core renderer.
Feel free to play around:
git clone https://gitlab.com/notpushkin/mkdocutils
cd mkdocutils
poetry install
cd docs
poetry run mkdocs build
cd site
python3 -m http.server 8999
# Visit http://localhost:8999/
- basic reST rendering works
- code highlighting is there but classnames are wrong
- admonitions work
- text roles (e. g.
:func:`foo`
) don't work
- VERY basic MyST rendering
- many things are broken (e. g. code blocks are just
<pre>
) - many things would crash the build process
- many things are broken (e. g. code blocks are just
- basic Recommonmark rendering
- to use, replace the parser in
mkdocutils.docutils
torecommonmark.parser.CommonMarkParser
- to use, replace the parser in