flask-flatpages使用Pygments代码高亮

发布于 2022-09-04 20:05:08 字数 1048 浏览 21 评论 0

我这里已经按照FlatPages中的说明,添加上pygments.css,不过网页中却是图片描述
不仅代码没高亮,其他样式也没有了。
这是view中的函数:


@app.route('/test')
def  test():
    test_post = os.path.join(app.config['POSTS'],'test.md')
    post = flatpages.get['test']
    return render_template('test.html', post=post)

这是模板的内容:

{% extends "base.html" %}

{% block title %}Test{% endblock %}
{% block head %}
{{ super() }}
<link href="//code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" rel="Stylesheet"></link>
<script src="//code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="//code.jquery.com/ui/1.10.2/jquery-ui.js" ></script>

{% endblock %}

{% block page_content %}
{{ post.html }}
{% endblock %}

不知道我是哪里出现问题了?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭泣的笑容 2022-09-11 20:05:08

上网查找到了答案,应该在模板中{{ post.html }} 修改为 {{ post.html|safe }},就可以以正常样式显示了。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文