summaryrefslogtreecommitdiff
path: root/doc/docs/moinmoin.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-08 08:50:24 +0200
committerGeorg Brandl <georg@python.org>2014-10-08 08:50:24 +0200
commitab509e4ea2a8bd3c7e8e355b0e83b3e2de9f7a01 (patch)
treedb1c94d9d2ba3fc0c664b71ba798007eb0da5a65 /doc/docs/moinmoin.rst
parent7f5c98a36c3a8e1b9877e1d4cfe41fd00f08833a (diff)
parente07ba8bf31d7a9ee2cfd4832608a9453a9f81fbe (diff)
downloadpygments-ab509e4ea2a8bd3c7e8e355b0e83b3e2de9f7a01.tar.gz
Merged in __russ__/pygments-main (pull request #165)
Diffstat (limited to 'doc/docs/moinmoin.rst')
-rw-r--r--doc/docs/moinmoin.rst39
1 files changed, 39 insertions, 0 deletions
diff --git a/doc/docs/moinmoin.rst b/doc/docs/moinmoin.rst
new file mode 100644
index 00000000..8b2216b3
--- /dev/null
+++ b/doc/docs/moinmoin.rst
@@ -0,0 +1,39 @@
+.. -*- mode: rst -*-
+
+============================
+Using Pygments with MoinMoin
+============================
+
+From Pygments 0.7, the source distribution ships a `Moin`_ parser plugin that
+can be used to get Pygments highlighting in Moin wiki pages.
+
+To use it, copy the file `external/moin-parser.py` from the Pygments
+distribution to the `data/plugin/parser` subdirectory of your Moin instance.
+Edit the options at the top of the file (currently ``ATTACHMENTS`` and
+``INLINESTYLES``) and rename the file to the name that the parser directive
+should have. For example, if you name the file ``code.py``, you can get a
+highlighted Python code sample with this Wiki markup::
+
+ {{{
+ #!code python
+ [...]
+ }}}
+
+where ``python`` is the Pygments name of the lexer to use.
+
+Additionally, if you set the ``ATTACHMENTS`` option to True, Pygments will also
+be called for all attachments for whose filenames there is no other parser
+registered.
+
+You are responsible for including CSS rules that will map the Pygments CSS
+classes to colors. You can output a stylesheet file with `pygmentize`, put it
+into the `htdocs` directory of your Moin instance and then include it in the
+`stylesheets` configuration option in the Moin config, e.g.::
+
+ stylesheets = [('screen', '/htdocs/pygments.css')]
+
+If you do not want to do that and are willing to accept larger HTML output, you
+can set the ``INLINESTYLES`` option to True.
+
+
+.. _Moin: http://moinmoin.wikiwikiweb.de/