Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """ |
||
13 | class UnknownHtmlDecorator(HtmlDecorator): |
||
14 | """ |
||
15 | HtmlDecorator for generating HTML code for unknown nodes. |
||
16 | """ |
||
17 | # ------------------------------------------------------------------------------------------------------------------ |
||
18 | def generate(self, node, file): |
||
19 | """ |
||
20 | Generates the HTML code for a unknown node. |
||
21 | |||
22 | :param sdoc.sdoc2.node.UnknownNode.UnknownNode node: The unknown node. |
||
23 | :param file file: The output file. |
||
24 | """ |
||
25 | pass |
||
26 | |||
28 | node_store.register_format_decorator('unknown', 'html', UnknownHtmlDecorator) |