From 8a3657ae467f918692ba479812aee951e28627f5 Mon Sep 17 00:00:00 2001 From: joey Date: Sun, 29 Jul 2007 04:16:47 +0000 Subject: [PATCH] web commit by http://ethan.betacantrips.com/: improve rst support --- doc/bugs/rst_tweak.mdwn | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 doc/bugs/rst_tweak.mdwn diff --git a/doc/bugs/rst_tweak.mdwn b/doc/bugs/rst_tweak.mdwn new file mode 100644 index 000000000..f6f7bbaf0 --- /dev/null +++ b/doc/bugs/rst_tweak.mdwn @@ -0,0 +1,19 @@ +rst.pm disallows raw HTML input. (It's meant as a security feature.) +IkiWiki generates HTML in rst files pretty much all the time. As +such, we should enable raw HTML support. --Ethan + +
+Index: IkiWiki/Plugin/rst.pm
+===================================================================
+--- IkiWiki/Plugin/rst.pm	(revision 3926)
++++ IkiWiki/Plugin/rst.pm	(working copy)
+@@ -30,7 +30,7 @@
+ 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('')+6:html.find('')].strip();
+ ";
+
\ No newline at end of file -- 2.45.0