Fork of original md_mermaid by Olivier Ruelle, including some fixes with PR awaiting on the upstream
Project description
md_mermaid
mermaid extension for Python-Markdown to add support for mermaid graph inside markdown file
Installation
For pip installation (only python version >=3.x) :
pip install markdown
pip install md-mermaid-ort
Usage
In your python script :
import markdown
text = """
# Title
Some text.
~~~mermaid
graph TB
A --> B
B --> C
~~~
Some other text.
~~~mermaid
graph TB
D --> E
E --> F
~~~
"""
html = markdown.markdown(text, extensions=['md_mermaid'])
print(html)
Output will result in :
<h1>Title</h1>
<p>Some text.</p>
<div class="mermaid">
graph TB
A --> B
B --> C
</div>
<p>Some other text.</p>
<div class="mermaid">
graph TB
D --> E
E --> F
</div>
<script>mermaid.initialize({startOnLoad:true});</script>
The <script>...</script> line appears only once even if there are several graphs in the file.
Note that the extension name have a '_' not a '-'.
Attention : don't forget to include in your output html project the two following mermaid files :
- mermaid.css (optional, can be customised)
- mermaid.min.js (can be download here here)
Development
Build and publish a new version on pypi
- Increment the version in
setup.py - Build the package:
python3 setup.py sdist bdist_wheel
- Upload the packages on pypi:
python3 -m twine upload --repository pypi dist/*
- Commit, tag the commit with the version number, and push all that
For the twine upload to work, it needs a ~/.pypirc file declaring the pypi repository:
[pypi]
username = __token__
password = pypi-<AN_ALLOWED_PYPI_TOKEN>
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file md-mermaid-ort-0.1.5.tar.gz.
File metadata
- Download URL: md-mermaid-ort-0.1.5.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8becd7c9ccfe4b0c3f78b8f9ff3ce5231b778908165e2f62f3233c54eb40fb20
|
|
| MD5 |
9e41f481bf2f22464f1c92c0d8eb1bda
|
|
| BLAKE2b-256 |
5cde9bdad4407116210fbd41b2b6312898163a7e7e5c1271b77260150bddb49f
|
File details
Details for the file md_mermaid_ort-0.1.5-py3-none-any.whl.
File metadata
- Download URL: md_mermaid_ort-0.1.5-py3-none-any.whl
- Upload date:
- Size: 15.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0be9760c95f5ade1975bc20021f517d55809fd21d6d59d0ea13cfe453a474a94
|
|
| MD5 |
4f556e406d13531ecbd918516dc70dd4
|
|
| BLAKE2b-256 |
cbe7b6c07fb0e0087b0c1ca869bb6ea92fb8089831c896ec5a374ffd476682a4
|