root/galaxy-central/eggs/docutils-0.4-py2.6.egg/docutils/writers/null.py
リビジョン 3, 500 bytes (コミッタ: kohda, 14 年 前) |
---|
行番号 | |
---|---|
1 | # Author: David Goodger |
2 | # Contact: goodger@python.org |
3 | # Revision: $Revision: 3892 $ |
4 | # Date: $Date: 2005-09-20 22:04:53 +0200 (Tue, 20 Sep 2005) $ |
5 | # Copyright: This module has been placed in the public domain. |
6 | |
7 | """ |
8 | A do-nothing Writer. |
9 | """ |
10 | |
11 | from docutils import writers |
12 | |
13 | |
14 | class Writer(writers.UnfilteredWriter): |
15 | |
16 | supported = ('null',) |
17 | """Formats this writer supports.""" |
18 | |
19 | config_section = 'null writer' |
20 | config_section_dependencies = ('writers',) |
21 | |
22 | def translate(self): |
23 | pass |
Note: リポジトリブラウザについてのヘルプは TracBrowser
を参照してください。