Conditions | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
1 | """ |
||
19 | def __init__(self, options, argument): |
||
20 | """ |
||
21 | Object constructor. |
||
22 | |||
23 | :param dict[str,str] options: The options of this reference. |
||
24 | :param str argument: The title of this reference. |
||
25 | """ |
||
26 | super().__init__('ref', options, argument) |
||
27 | |||
65 | node_store.register_inline_command('ref', ReferenceNode) |
||
|