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.
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.