aboutsummaryrefslogtreecommitdiff
path: root/plugins/WordPressPlugin.hs
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/WordPressPlugin.hs')
-rw-r--r--plugins/WordPressPlugin.hs10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/WordPressPlugin.hs b/plugins/WordPressPlugin.hs
new file mode 100644
index 000000000..85b7ca72b
--- /dev/null
+++ b/plugins/WordPressPlugin.hs
@@ -0,0 +1,10 @@
+module WordPressPlugin (transform) where
+import Text.Pandoc
+
+-- This plugin (when used with -m) prints LaTeX math in the
+-- format required by WordPress blogs. $e=mc^2$ becomes
+-- $LaTeX e=mc^2$.
+
+transform :: Inline -> Inline
+transform (Math x y) = Math x $ "LaTeX " ++ y
+transform x = x