Django:标记 - 设置顶部标题
我正在 https://docs.djangoproject.com/ 上提到的标记语言之间进行选择en/dev/ref/contrib/markup/ 。
但我需要一件具体的事情 - 设置顶部标题。默认情况下,第一个标题是 h1。我需要将 h2 作为第一个。有什么方法可以做到这一点吗?
谢谢。
I am choosing between markup languages mentioned on https://docs.djangoproject.com/en/dev/ref/contrib/markup/ .
But I need one specific thing - set the top heading. By default, there is h1 the first heading. I need to have h2 as the first. Exists any way to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Markdown,则明确表示标题级别。例如
,
如果您想从标题二开始,请确保在过度使用 # 的地方使用 ##。
如果您想自动完成此操作,我想您可以有一个过滤器,例如
将所有标题向下移动一级,然后再将其传递到 markdown。
If you are using markdown, you explicitly denote the heading levels. For instance
corresponds to
If you want to start with heading two, just make sure to use ## everywhere you would overwise use #.
If you want to have this done automatically, I suppose you could have a filter like
to shift all the headings down one level before passing it into markdown.