Markdown widget for trame
Project description
trame-markdown extend trame widgets with a component that is capable of rendering Markdown syntax. Markdown integration into trame allow user to display markdown content easily. If you want are wondering what Markdown is, you can look at some online guides.
Installing
trame-markdown can be installed with pip:
pip install --upgrade trame-markdown
Usage
The Trame Tutorial is the place to go to learn how to use the library and start building your own application.
The API Reference documentation provides API-level documentation.
License
trame-markdown is made available under the MIT License. For more details, see LICENSE This license has been chosen to match the one use by Markdown It Vue which is used under the cover.
Community
Trame | Discussions | Issues | RoadMap | Contact Us
Enjoying trame?
Share your experience with a testimonial or with a brand approval.
Code sample
from trame.widgets import markdown
widget = markdown.Markdown("""
> #### The quarterly results look great!
>
> - Revenue was off the chart.
> - Profits were higher than ever.
>
> *Everything* is going according to **plan**.
""")
widget.update(md_file.read())
But if you rather be in control of your variable, you can use the property content.
from trame.widgets import markdown
widget = markdown.Markdown(content=("var_name", "**hello**"))
Development
To update client side, just update the version and run the following commands.
mkdir -p trame_markdown/module/serve
cd trame_markdown/module/serve
curl -L https://registry.npmjs.org/markdown-it-vue/-/markdown-it-vue-1.1.7.tgz | tar --strip-components=1 -xzv
Project details
Release history Release notifications | RSS feed
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
Hashes for trame_markdown-3.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f72490015f3a7bbfd0e1b290c08d7c3d06739adbaca5758b2dbc5448b4a3b14c |
|
MD5 | d808e2c97c87d461636129f4de1d4133 |
|
BLAKE2b-256 | 9f8b98e97f5a2db976020e78df78da3aa3b069036a9acd284fd7e1d672b1430f |