summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-05-14 20:39:10 -0400
committerrsiddharth <s@ricketyspace.net>2019-05-14 20:39:10 -0400
commit736c90e1616ec3c0834425d9e3a227f226e238a1 (patch)
tree5566bb3db55597003bd53b101715f4ab73eec667 /bin
parentba498ef4d82672767d5b37d007d55a060955f14a (diff)
bin/news: Add html.
* bin/news (html): New function.
Diffstat (limited to 'bin')
-rw-r--r--bin/news9
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/news b/bin/news
index 6b75443..e0ca882 100644
--- a/bin/news
+++ b/bin/news
@@ -92,6 +92,15 @@ def markdown(c):
return r.stdout
+def html(t, d, c):
+ h = template('news')
+ h = h.replace(PH['title'], t, 2)
+ h = h.replace(PH['date'], datefmt(d), 1)
+ h = h.replace(PH['content'], markdown(c), 1)
+
+ return h
+
+
def process(f):
c = read(f.path)