Completed
Pull Request — master (#48)
by Oleg
02:35
created

IconDefHtmlFormatter

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
dl 0
loc 4
ccs 1
cts 1
cp 1
1
"""
2
SDoc
3
4
Copyright 2016 Set Based IT Consultancy
5
6
Licence MIT
7
"""
8
# ----------------------------------------------------------------------------------------------------------------------
9 1
from sdoc.sdoc2.NodeStore import NodeStore
10 1
from sdoc.sdoc2.formatter.html.HtmlFormatter import HtmlFormatter
11
12
13 1
class IconDefHtmlFormatter(HtmlFormatter):
14
    """
15
    HtmlFormatter stub for definition of the Icon.
16
    """
17
18
# ----------------------------------------------------------------------------------------------------------------------
19
NodeStore.register_formatter('icon_def', 'html', IconDefHtmlFormatter)
20