summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2014-11-23 11:50:35 +0200
committerLars Wirzenius <liw@liw.fi>2014-11-23 11:50:35 +0200
commit79276b890619cee7c7dadbd5b2c353c61eee7c83 (patch)
tree1005b7163d52e73a2924f61e741ecb758e8fa3b0
parent6eec9f17e97e408b4c82f001ffc8a7ea399a0ed6 (diff)
downloadjt-79276b890619cee7c7dadbd5b2c353c61eee7c83.tar.gz
Use !meta link in ikiwiki to refer to topics
-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 ''