summaryrefslogtreecommitdiff
path: root/ikiwiki/directive/format.mdwn
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2010-07-14 20:25:22 +0200
committerJonas Smedegaard <dr@jones.dk>2010-07-14 20:25:22 +0200
commit90896aac9fcd3ce4b44643a3bc2773a831c0c3cf (patch)
treec7fa66ac8dfb7c475244fa1b2c4ddcdb1bc55375 /ikiwiki/directive/format.mdwn
parent6634fec4377c1d358edc87c3819c280a9e273380 (diff)
Sync with ikiwiki 3.20100704.
Diffstat (limited to 'ikiwiki/directive/format.mdwn')
-rw-r--r--ikiwiki/directive/format.mdwn29
1 files changed, 29 insertions, 0 deletions
diff --git a/ikiwiki/directive/format.mdwn b/ikiwiki/directive/format.mdwn
new file mode 100644
index 0000000..7d11d22
--- /dev/null
+++ b/ikiwiki/directive/format.mdwn
@@ -0,0 +1,29 @@
+The `format` directive is supplied by the [[!iki plugins/format desc=format]]
+plugin.
+
+The directive allows formatting a chunk of text using any available page
+format. It takes two parameters. First is the type of format to use,
+ie the extension that would be used for a standalone file of this type.
+Second is the text to format.
+
+For example, this will embed an otl outline inside a page using mdwn or
+some other format:
+
+ \[[!format otl """
+ foo
+ 1
+ 2
+ bar
+ 3
+ 4
+ """]]
+
+Note that if the highlight plugin is enabled, this directive can also be
+used to display syntax highlighted code. Many languages and formats are
+supported. For example:
+
+ \[[!format perl """
+ print "hello, world\n";
+ """]]
+
+[[!meta robots="noindex, follow"]]