summaryrefslogtreecommitdiffstatshomepage
path: root/util
diff options
context:
space:
mode:
authorWolfgang Müller2019-07-22 17:19:05 +0200
committerWolfgang Müller2019-07-22 17:19:05 +0200
commit89ff7a7514de03dc95ea3bd7cd66f18bcfa237e6 (patch)
treed9c99d519ae59505a40eb754c2e05944d3f985d3 /util
parentf5ed4d2c8463f01d551ac1cdf82b387dc8ef3ec0 (diff)
downloadsite-89ff7a7514de03dc95ea3bd7cd66f18bcfa237e6.tar.gz
templates: Correctly wrap articles in <main>
As per guidelines, <main> should contain <article>, and not the other way around.
Diffstat (limited to 'util')
-rw-r--r--util/mdconv.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/util/mdconv.sh b/util/mdconv.sh
index 19f4d4c..1e48eb7 100644
--- a/util/mdconv.sh
+++ b/util/mdconv.sh
@@ -13,8 +13,6 @@ cat<<EOF
<a href="..">↖</a>
<time datetime="$date">$(date -d"$date" '+%A, %B %e, %Y')</time>
</header>
- <main>
- $(lowdown "$1")
- </main>
+ $(lowdown "$1")
</article>
EOF