summaryrefslogtreecommitdiffstatshomepage
path: root/util (unfollow)
Commit message (Collapse)AuthorLines
2020-04-11util: Have lowdown not skip or escape HTML by defaultWynn Wolf Arbor-1/+3
This commit adds two new flags to the lowdown(1) call in mdconv.sh that control the inclusion and parsing of inline HTML in markedown files: 1) --html-no-skiphtml, which stops lowdown(1) from skipping inline HTML 2) --html-no-escapehtml, which stops lowdown(1) from escaping said HTML For now, this is done unconditionally. We plan to add a tag to the markdown files controlling this behaviour in a future commit.
2019-08-02util: Add title tag to the "back arrow"Wolfgang Müller-1/+1
2019-07-22templates: Correctly wrap articles in <main>Wolfgang Müller-3/+1
As per guidelines, <main> should contain <article>, and not the other way around.