I don't want to render the ToC because it's a hideous <ul> in the
absence of more specific CSS (which would not be a good use of my time
today), but at least this gets me autogenerated IDs on the h3s?—which
are nice.
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
+
+MARKDOWN = {
+ 'extension_configs': {
+ 'markdown.extensions.codehilite': {'css_class': 'highlight'},
+ 'markdown.extensions.extra': {},
+ 'markdown.extensions.meta': {},
+ 'markdown.extensions.toc': {
+ 'title': 'Table of Contents',
+ },
+ },
+ 'output_format': 'html5'
+}