The default md engine used for GitHub pages does not natively support definitions lists:
Is just rendered as
Heading.: Body
It should be rendered as
- Heading.
- Body
Google suggests that adding the following to _config.yml should fix the definitions lists behavior:
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter: rouge
hard_wrap: false
enable_coderay: false
Unsure, if this breaks our current deploy pipeline. Suggest we only try this fix for the next iteration.
The default md engine used for GitHub pages does not natively support definitions lists:
Is just rendered as
It should be rendered as
Google suggests that adding the following to _config.yml should fix the definitions lists behavior:
Unsure, if this breaks our current deploy pipeline. Suggest we only try this fix for the next iteration.