summaryrefslogtreecommitdiff
path: root/docs/src/moinmoin.txt
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-01-18 21:16:32 +0100
committerGeorg Brandl <georg@python.org>2014-01-18 21:16:32 +0100
commitff3a8dea781fb0492de4abbd4da48a5b1c110974 (patch)
tree5aaf665818ca148242ba821fc95940b396009f17 /docs/src/moinmoin.txt
parent97703d63f39e6086d497a6a749c9eee3293dcbeb (diff)
downloadpygments-ff3a8dea781fb0492de4abbd4da48a5b1c110974.tar.gz
New docs + website using Sphinx.
Diffstat (limited to 'docs/src/moinmoin.txt')
-rw-r--r--docs/src/moinmoin.txt39
1 files changed, 0 insertions, 39 deletions
diff --git a/docs/src/moinmoin.txt b/docs/src/moinmoin.txt
deleted file mode 100644
index 8b2216b3..00000000
--- a/docs/src/moinmoin.txt
+++ /dev/null
@@ -1,39 +0,0 @@
-.. -*- 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/