By default, Markdown is building XHTML. If you do an HTML5 website, it
can therefore generate invalid markups (for example <th /> is not
valid in HTML5). Markdown can be configured with "output_format". This
patch adds this configuration switch to Hyde:
```
markdown:
extensions:
- codehilite
- extra
- toc
output_format: html
```
main