summaryrefslogtreecommitdiff
path: root/doc/plugins/html.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-03 22:31:20 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-03 22:31:20 +0000
commit8d4c474f3b92ed2d0e8f968e34a5c6d9d30921fe (patch)
tree58129fd2cda3ab6a61e2f0536f4b6ec9c59c6ad7 /doc/plugins/html.mdwn
parentaf029154d6b145302f8ece0286711f61ea606877 (diff)
* Add a html plugin, which can be used to write wikis in raw html,
if you'd ever want to do such a thing. Slightly tricky, since ikiwiki defaults to not processing .html files, since w/o this plugin they would be copied unsanitised. With this plugin, it will process, and html sanitise, them like any other page type.
Diffstat (limited to 'doc/plugins/html.mdwn')
-rw-r--r--doc/plugins/html.mdwn8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/plugins/html.mdwn b/doc/plugins/html.mdwn
new file mode 100644
index 000000000..01e366c49
--- /dev/null
+++ b/doc/plugins/html.mdwn
@@ -0,0 +1,8 @@
+This plugin lets raw html pages be used as source pages for the wiki. The
+html pages will still be wrapped in the same html template as any other
+page, so for best results you should include only the page body in the html
+file. Also, if the htmlscrubber plugin is enabled, the html pages will be
+sanitised like any other page. You can also use standard [[WikiLinks]] etc
+in the html pages.
+
+This plugin is included in ikiwiki, but is not enabled by default.