Render help content in the browser on a Windows platform.
| 319 | |
| 320 | |
| 321 | class WindowsBrowserHelpRenderer(BrowserHelpRenderer): |
| 322 | """Render help content in the browser on a Windows platform.""" |
| 323 | |
| 324 | def _convert_doc_content(self, contents): |
| 325 | text_output = publish_string( |
| 326 | contents, |
| 327 | writer=html4css1.Writer(), |
| 328 | settings_overrides=self._DEFAULT_DOCUTILS_SETTINGS_OVERRIDES, |
| 329 | ) |
| 330 | return text_output |
| 331 | |
| 332 | |
| 333 | class HelpCommand: |