From 79276b890619cee7c7dadbd5b2c353c61eee7c83 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 23 Nov 2014 11:50:35 +0200 Subject: Use !meta link in ikiwiki to refer to topics --- NEWS | 1 + jt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ca9a21f..9ed7c74 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,7 @@ Version 0.4, released UNRELEASED * Method names (`_commit_to_git`, `_push_to_git`) in calls fixed. * With `jt new --topic=foo`, the topic page foo.mdwn must exist. +* Use Ikiwiki `[[!meta link]]` for referring to topic pages. Version 0.3, released 2014-11-22 -------------------------------- diff --git a/jt b/jt index b1a96bf..ab87f62 100755 --- a/jt +++ b/jt @@ -138,7 +138,7 @@ class NewCommand(Command): def _get_topic_link(self, topic): if topic: - return 'Part of [[%s]]' % topic + return '[[!meta link="%s"]]' % topic else: return '' -- cgit v1.2.1