summaryrefslogtreecommitdiffstatshomepage
path: root/util/mdconv.sh
blob: 1e48eb7a8ff0b97e09420bf5979213a4269f1b64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set -e

title="$(lowdown -X title "$1")"
date="$(lowdown -X date "$1")"
author="$(lowdown -X author "$1")"

cat<<EOF
<?xml version="1.0" encoding="UTF-8" ?>
<article data-sblg-article="true">
	<header>
		<h1>$title</h1>
		<address>$author</address>
		<a href="..">↖</a>
		<time datetime="$date">$(date -d"$date" '+%A, %B %e, %Y')</time>
	</header>
	$(lowdown "$1")
</article>
EOF