aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/rst_tweak.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-10-29 18:06:00 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-10-29 18:06:00 -0400
commit3b8740ebee010eee61d24faee6f0f5a4b74495ee (patch)
tree459df23f35ae0501b32761efc5cef814803caa56 /doc/bugs/rst_tweak.mdwn
parent3d72fd8f265703a46ab9bd5af268547eafea0292 (diff)
downloadikiwiki-3b8740ebee010eee61d24faee6f0f5a4b74495ee.tar
ikiwiki-3b8740ebee010eee61d24faee6f0f5a4b74495ee.tar.gz
response
Diffstat (limited to 'doc/bugs/rst_tweak.mdwn')
-rw-r--r--doc/bugs/rst_tweak.mdwn14
1 files changed, 13 insertions, 1 deletions
diff --git a/doc/bugs/rst_tweak.mdwn b/doc/bugs/rst_tweak.mdwn
index a506d4344..9d433e24e 100644
--- a/doc/bugs/rst_tweak.mdwn
+++ b/doc/bugs/rst_tweak.mdwn
@@ -28,4 +28,16 @@ Does the Perl version of this plugin still exist? There appears to be no "rst.p
> No, only the python version exists. It does have `raw_enabled` set.
> --[[Joey]]
-I am sorry, but I am confused. Does this mean that I can use Ikiwiki features that translate to HTML in rst files? For example, when I use a \[[pagename]]-style link in a rst file, the page generated by Ikiwiki's rst plugin says &lt;a href="./../pagename/">pagename&lt;/a> as text. The link is expanded correctly, but the result isn't interpreted as HTML. Is that what is supposed to happen? --Peter
+I am sorry, but I am confused. Does this mean that I can use Ikiwiki
+features that translate to HTML in rst files? For example, when I use a
+\[[pagename]]-style link in a rst file, the page generated by Ikiwiki's rst
+plugin says &lt;a href="./../pagename/">pagename&lt;/a> as text. The link
+is expanded correctly, but the result isn't interpreted as HTML. Is that
+what is supposed to happen? --Peter
+
+> `raw_enabled` allows you to use the
+> [raw directive](http://docutils.sourceforge.net/docs/ref/rst/directives.html),
+> but this is not used by ikiwiki for wikilinks or anything else.
+> That's why the [[plugin_page|plugins/rst]] has its note about
+> issues with wikilinks and directives. You'd have to put those inside
+> raw directives yourself to avoid rst escaping their result. --[[Joey]]