Index: trunk/extensions/Collection/README.txt |
— | — | @@ -88,26 +88,34 @@ |
89 | 89 | |
90 | 90 | *$wgCollectionFormats* |
91 | 91 | An array mapping names of mwlib_ writers to the name of the produced format. |
92 | | - The default value is: |
| 92 | + The default value is:: |
93 | 93 | |
94 | 94 | array( |
95 | 95 | 'rl' => 'PDF', |
96 | 96 | ) |
97 | 97 | |
98 | 98 | i.e. only PDF enabled. If you want to add OpenDocument Text in addition to |
99 | | - PDF you can set $wgCollectionFormats to something like this: |
| 99 | + PDF you can set $wgCollectionFormats to something like this:: |
100 | 100 | |
101 | 101 | $wgCollectionFormats = array( |
102 | 102 | 'rl' => 'PDF', |
103 | 103 | 'odf' => 'ODT', |
104 | 104 | ); |
105 | 105 | |
| 106 | + On the public render server tools.pediapress.com, currently the following |
| 107 | + writers are available: |
| 108 | + |
| 109 | + * docbook: DocBook XML |
| 110 | + * odf: OpenDocument Text |
| 111 | + * rl: PDF |
| 112 | + * xhtml: XHTML 1.0 Transitional |
| 113 | + |
106 | 114 | See mwlib_ for possible other writers. |
107 | 115 | |
108 | 116 | *$wgCollectionArticleNamespaces (array)* |
109 | 117 | List of namespace numbers for pages which can be added to a collection. |
110 | 118 | Category pages (NS_CATEGORY) are always an exception (all articles in a |
111 | | - category are added, not the category page itself). Default is: |
| 119 | + category are added, not the category page itself). Default is:: |
112 | 120 | |
113 | 121 | array( |
114 | 122 | NS_MAIN, |