I can’t seem to get my markdown to be parsed properly when I use atx style headers.
I am able to get h1 and h2 headers by using this:
Header 1
=========
Header 2
---------
But not
#Header 1
##Header 2
###Header 3
In the above example, the generated html simply reads literally: ###Header 3
, etc.
I don’t see anyone else having this problem, though, so I must be doing something wrong. Any tips? Do I have a blackfriday setting wrong?
I assume so, as my tests with blackfriday indicate that blackfriday.MarkdownCommon
fails to render atx style headers properly, while blackfriday.MarkdownBasic
works fine. I just can’t see documented anywhere what setting I am supposed to change. Again, my apologies for not seeing this somewhere.
My config.toml:
baseurl = "https://mysite.com/"
languageCode = "en-us"
title = "My Web Site"
pygmentsCodeFences = true
pygmentsUseClasses = true
Thanks for any response!
Jonathan