This is an extension to Python-Markdown which allows conditional compilations to be inserted into the text.
This module can now be installed using pip
.
$ pip install md-condition
The syntax for use within your Markdown files is
<!--- #if DEBUG -->
# md-condition DEBUG
<!--- #else -->
not DEBUG
<!--- #endif -->
<!--- #if RELEASE -->
# md-condition RELEASE
<!--- #else -->
not RELEASE
<!--- #endif -->
<h1>md-condition DEBUG</h1>
<p>not RELEASE</p>
In your mkdocs.yml add this to markdown_extensions.
markdown_extensions:
- md_condition:
symbol: DEBUG