diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/mdconv.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/mdconv.sh b/util/mdconv.sh index a3b6831..4385f51 100644 --- a/util/mdconv.sh +++ b/util/mdconv.sh @@ -4,6 +4,8 @@ title="$(lowdown -X title "$1")" date="$(lowdown -X date "$1")" author="$(lowdown -X author "$1")" +flags="--html-no-skiphtml --html-no-escapehtml" + cat<<EOF <?xml version="1.0" encoding="UTF-8" ?> <article data-sblg-article="true"> @@ -13,6 +15,6 @@ cat<<EOF <a href=".." title="Back to frontpage">↖</a> <time datetime="$date">$(date -d"$date" '+%A, %B %e, %Y')</time> </header> - $(lowdown "$1") + $(lowdown $flags "$1") </article> EOF |