]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/bugs/cannot_preview_shortcuts.mdwn
Merge branch 'master' into po
[ikiwiki.git] / doc / bugs / cannot_preview_shortcuts.mdwn
index 7c830898da6099aa8e6b9c3454ce4ae0591fee1f..d7045b2dc34e97843bd856a2494eeeb7695b4a6a 100644 (file)
@@ -8,3 +8,10 @@ Shortcuts such as \[[!google foo]] do not work when previewing pages.
 >> still works, but it relies on the fact that the `listdirectives` `checkconfig`
 >> hook is called before the `shortcut` `checkconfig` hook.
 >> -- [[Will]]
+
+>> The order plugins are loaded is effectively random. (`keys %hooks`).
+>> So I've made shortcuts pass a 'shortcut' parameter when registering
+>> them, which listdirectives can grep out of the full list of directives.
+>> That may not be the best name to give it, especially if other plugins
+>> generate directives too. Seemed better than forcing shortcut's
+>> checkconfig hook to run last tho. --[[Joey]]