为了账号安全,请及时绑定邮箱和手机立即绑定

Django:为模板渲染加入Markdown支持

标签:
Java Python

两种方法

  • Django 的django-markdown-deux模块

  • Python模块 markdown

django-markdown-deux

首先需要安装:

pip install django-markdown-deux

修改setting.py
markdown-deux添加进去

INSTALLED_APPS = [    'markdown-deux',
]

在模板里添加tags
加载了markdown-deux-tags标签之后,在markdown内容加上过滤器就可以解析成html了。

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>Doc - {{ docname }}</title>
    <link href="/static/css/highlights/github.css"/></head><body>{ % load markdown-deux-tags % }
{{ content | markdown }}</body></html>

使用markdown模块渲染

首先安装

pip install markdown

views.py里使用markdown渲染

import markdowndef doc(request, name):
    template = get_template('doc.html')
    docfile = get_template('doc/{}.md'.format(name))
    content = docfile.render()
    html = template.render({        'docname': name,        'content':
            markdown.markdown(content,
                              extensions=[                                  'markdown.extensions.extra',                                  'markdown.extensions.codehilite',                                  'markdown.extensions.toc',
                              ])
    })    return HttpResponse(html)

markdown模块会直接把markdown格式的文档渲染成html格式。
不过django的模板里会对html做转义,所以还需要修改一下模板。

修改doc.html
content加上safe过滤器,表示不需要转义,直接显示原始内容。

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>Doc - {{ docname }}</title>
    <link href="/static/css/highlights/github.css"/></head><body>{{ content | safe }}</body></html>



原文链接:https://www.jianshu.com/p/898ac2bd41e8


点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消