1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# Markdown
Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Created by John Gruber in 2004, Markdown is now one of the world’s most popular markup languages.

Inside trame it might be useful to use markdown to simplify the writing of long description and help when some formatting is expected.
## How to use it?
trame supports an extended version of markdown for formatting documents, drawing diagrams, and more. Since Markdown could contains characters that can conflict with the HTML syntax, a variable must be used to pass the markdown content to the UI component like in the snippet below.
```python
from trame.html import markdown
initial_value = """
# Some markdown...
Welcome to "trame"!
"""
# UI Component
markdown.Markdown(
v_model=("md_content", initial_value), # variable binding with initial value
)
```
trame relies on markdown-it-vue (see documentation [here](http://www.aqcoder.com/markdown)) which supports the following set of plugins:
- Official markdown syntax
- [AsciiMath](http://asciimath.org/)
- Images with size-control
- Simple charts with [Apache echarts](https://echarts.apache.org/examples/en/index.html)
- Diagrams like flow charts and Gantt charts with [Mermaid diagrams](https://mermaid.live)
- And more!
## Examples
- [API](https://trame.readthedocs.io/en/latest/trame.html.markdown.html)
- [PlainPython/Markdown](https://github.com/Kitware/trame/blob/master/examples/v1/PlainPython/Markdown/Simple.py) reads Markdown files and displays them
|