Test Failed
Push — master ( 714282...4cb748 )
by P.R.
01:55 queued 13s
created

sdoc.sdoc2.formatter.html.IconDefHtmlFormatter   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 13
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
1
from sdoc.sdoc2.formatter.html.HtmlFormatter import HtmlFormatter
2
from sdoc.sdoc2.NodeStore import NodeStore
3
4
5
class IconDefHtmlFormatter(HtmlFormatter):
6
    """
7
    HtmlFormatter stub for definition of the Icon.
8
    """
9
10
11
# ----------------------------------------------------------------------------------------------------------------------
12
NodeStore.register_formatter('icondef', 'html', IconDefHtmlFormatter)
13