【Dash】Markdown

Markdown

While Dash exposes HTML through Dash HTML Components (dash.html ), it can be tedious to write your copy in HTML. For writing blocks of text, you can use the Markdown component in Dash Core Components (dash.dcc).

Dash apps can be written in Markdown. Dash uses the CommonMarkspecification of Markdown.

python 复制代码
from dash import Dash, html, dcc

app = Dash(__name__)

markdown_text = '''
### Dash and Markdown

Dash apps can be written in Markdown.
Dash uses the [ComonMark](http://commonmark.org/)
specification of Markdown.
Check out their [60 Second Markdown Tutorial](http://commonmark.org/help/)
if this is your first introduction to Markdown!
'''


app.layout = html.Div([
    dcc.Markdown(children=markdown_text)
])

if __name__ == '__main__':
    app.run(debug=True)
相关推荐
Jia-Hui Su16 分钟前
GDSFactory环境配置(PyCharm+Git+KLayout)
git·python·pycharm
学习3人组1 小时前
手写数字识别代码
人工智能·python
古译汉书2 小时前
蓝桥杯算法之基础知识(2)——Python赛道
数据结构·python·算法·蓝桥杯
少陵野小Tommy2 小时前
Python能用古诗词数据库做什么7:根据标题、诗句查找诗歌
开发语言·数据库·python
IT·陈寒2 小时前
新手小白零基础搭建MCP教程
python·ai·tools·mcp
倔强青铜三2 小时前
苦练Python第42天:Python类(Class)初探,面向对象编程入门
人工智能·python·面试
倔强青铜三2 小时前
苦练Python第41天:如何用dir() 函数“透视一切”
人工智能·python·面试
倔强青铜三2 小时前
苦练Python第40天:模块加载与项目组织,让代码像乐高一样可复用!
人工智能·python·面试
跟橙姐学代码3 小时前
Python 集合:人生中最简单的真理,只有一次
前端·python·ipython
偷心伊普西隆4 小时前
Python Excel 通用筛选函数
python·excel·pandas