summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xjt2
2 files changed, 2 insertions, 1 deletions
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 ''