diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/mdconv.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util/mdconv.sh b/util/mdconv.sh index 1178484..58f9cd8 100644 --- a/util/mdconv.sh +++ b/util/mdconv.sh @@ -9,12 +9,14 @@ flags="--html-no-skiphtml --html-no-escapehtml" cat<<EOF <?xml version="1.0" encoding="UTF-8" ?> <article data-sblg-article="true"> - <header> + <header class="post"> <h1>$title</h1> <address>$author</address> <a href=".." title="Back to frontpage">↖</a> <time datetime="$date">$(date -d"$date" '+%A, %B %e, %Y')</time> </header> - $(lowdown $flags "$1") + <section class="post"> + $(lowdown $flags "$1") + </section> </article> EOF |