summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
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)