aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-07-29 22:39:40 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-07-29 22:39:40 +0000
commit54e25f034cf953ed803c2a807bd4c259b32630cb (patch)
treede592b546a91574afe0ba74060f2c71ad509a363 /IkiWiki
parentf371f2f2d817a7928bb989cb22d0519ebbd79391 (diff)
downloadikiwiki-54e25f034cf953ed803c2a807bd4c259b32630cb.tar
ikiwiki-54e25f034cf953ed803c2a807bd4c259b32630cb.tar.gz
* Allow raw html in the rst plugin.
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/rst.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/rst.pm b/IkiWiki/Plugin/rst.pm
index 1f4c8bf9e..30f5d16d8 100644
--- a/IkiWiki/Plugin/rst.pm
+++ b/IkiWiki/Plugin/rst.pm
@@ -30,7 +30,7 @@ from sys import stdin;
html = publish_string(stdin.read(), writer_name='html',
settings_overrides = { 'halt_level': 6,
'file_insertion_enabled': 0,
- 'raw_enabled': 0 }
+ 'raw_enabled': 1 }
);
print html[html.find('<body>')+6:html.find('</body>')].strip();
";