Merge branch 'master' of ssh://git.kitenet.net/srv/git/ikiwiki.info
authorJoey Hess <joey@kodama.kitenet.net>
Wed, 9 Jan 2008 19:35:11 +0000 (14:35 -0500)
committerJoey Hess <joey@kodama.kitenet.net>
Wed, 9 Jan 2008 19:35:11 +0000 (14:35 -0500)
doc/bugs/debbug_shortcut_should_expand_differently.mdwn [new file with mode: 0644]
doc/bugs/debbug_shortcut_should_expand_differently/discussion.mdwn [new file with mode: 0644]

diff --git a/doc/bugs/debbug_shortcut_should_expand_differently.mdwn b/doc/bugs/debbug_shortcut_should_expand_differently.mdwn
new file mode 100644 (file)
index 0000000..22a1c14
--- /dev/null
@@ -0,0 +1,11 @@
+`\[[debbug 123456]]` expands to "bug #123456", which is hyperlinked. Could you please drop the leading "bug", for two reasons?
+
+First, #123456 is not a bug, it's a bug report. And second, #123456 suffices, doesn't it? By hardcoding the "bug" in there, you make it impossible to start a sentence with a bug number, e.g.:
+
+  There are problems with code. #123456 is a good example of...
+
+instead of
+
+  There are problems with code. bug #123456 is a good example of...
+
+Thanks, --[[madduck]]
diff --git a/doc/bugs/debbug_shortcut_should_expand_differently/discussion.mdwn b/doc/bugs/debbug_shortcut_should_expand_differently/discussion.mdwn
new file mode 100644 (file)
index 0000000..8234f80
--- /dev/null
@@ -0,0 +1,11 @@
+You could change this on your wiki by modifying the shortcut definition :
+
+Currently this is:
+
+    [shortcut name=debbug url="http://bugs.debian.org/%s" desc="bug #%s"]
+
+You just have to use:
+
+    [shortcut name=debbug url="http://bugs.debian.org/%s" desc="#%s"]
+
+(I use single bracket here beacause of [[bugs/wiki_links_still_processed_inside_code_blocks]])