highmark-markdown 1.1.22 → 1.1.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (201) hide show
  1. package/example.js +350 -1393
  2. package/lib/example/view/button/page.js +1 -1
  3. package/lib/example/view/button/tab/css.js +1 -1
  4. package/lib/example/view/button/tab/html.js +1 -1
  5. package/lib/example/view/button/tab/markdown.js +1 -1
  6. package/lib/example/view/button/tab/markdownStyle.js +1 -1
  7. package/lib/example/view/button/tab/plainText.js +1 -1
  8. package/lib/example/view/button/tab/preview.js +1 -1
  9. package/lib/example/view/button/tab.js +1 -1
  10. package/lib/example/view/div/container/css.js +1 -1
  11. package/lib/example/view/div/container/html.js +1 -1
  12. package/lib/example/view/div/container/markdown.js +1 -1
  13. package/lib/example/view/div/container/markdownStyle.js +1 -1
  14. package/lib/example/view/div/container/plainText.js +1 -1
  15. package/lib/example/view/div/container/preview.js +1 -1
  16. package/lib/example/view/div/html.js +1 -1
  17. package/lib/example/view/div/preview.js +1 -1
  18. package/lib/example/view/div/sizeable/left.js +1 -1
  19. package/lib/example/view/div/tabButtons.js +1 -1
  20. package/lib/example/view/textarea/css.js +1 -1
  21. package/lib/example/view/textarea/markdown.js +1 -1
  22. package/lib/example/view/textarea/markdownStyle.js +1 -1
  23. package/lib/example/view/textarea/parseTree/css.js +1 -1
  24. package/lib/example/view/textarea/parseTree/html.js +1 -1
  25. package/lib/example/view/textarea/parseTree/markdown.js +1 -1
  26. package/lib/example/view/textarea/parseTree/markdownStyle.js +1 -1
  27. package/lib/example/view/textarea/parseTree.js +1 -1
  28. package/lib/example/view/textarea/plainText.js +1 -1
  29. package/lib/example/view/xmp.js +1 -1
  30. package/lib/example/view.js +2 -3
  31. package/lib/markdown/lexer.js +2 -3
  32. package/lib/markdown/parser.js +1 -1
  33. package/lib/markdownStyle/lexer.js +2 -3
  34. package/lib/markdownStyle/parser.js +1 -1
  35. package/lib/node/css/amount.js +1 -1
  36. package/lib/node/css/argument.js +1 -1
  37. package/lib/node/css/arguments.js +1 -1
  38. package/lib/node/css/class.js +1 -1
  39. package/lib/node/css/colour.js +1 -1
  40. package/lib/node/css/declaration.js +1 -1
  41. package/lib/node/css/identifier.js +1 -1
  42. package/lib/node/css/name.js +1 -1
  43. package/lib/node/css/pseudoClass.js +1 -1
  44. package/lib/node/css/ruleName.js +1 -1
  45. package/lib/node/css/ruleSet.js +1 -1
  46. package/lib/node/css/selector.js +1 -1
  47. package/lib/node/css/selectors.js +1 -1
  48. package/lib/node/css/selectorsList.js +1 -1
  49. package/lib/node/css/string.js +1 -1
  50. package/lib/node/css/topmost.js +1 -1
  51. package/lib/node/css/value.js +1 -1
  52. package/lib/node/css/values.js +1 -1
  53. package/lib/node/css.js +1 -1
  54. package/lib/node/html/directive/contents.js +1 -1
  55. package/lib/node/html/directive/footnotes.js +1 -1
  56. package/lib/node/html/directive/index.js +1 -1
  57. package/lib/node/html/directive/pageNumber.js +1 -1
  58. package/lib/node/html/directive.js +1 -1
  59. package/lib/node/html/division.js +57 -49
  60. package/lib/node/html/error.js +1 -1
  61. package/lib/node/html/footnote.js +20 -1
  62. package/lib/node/html/heading/index.js +1 -1
  63. package/lib/node/html/heading/primary.js +1 -1
  64. package/lib/node/html/heading/quaternary.js +1 -1
  65. package/lib/node/html/heading/secondary.js +1 -1
  66. package/lib/node/html/heading/tertiary.js +1 -1
  67. package/lib/node/html/heading.js +1 -1
  68. package/lib/node/html/image.js +1 -1
  69. package/lib/node/html/item/contents.js +1 -1
  70. package/lib/node/html/item/footnote.js +5 -5
  71. package/lib/node/html/item/index.js +1 -1
  72. package/lib/node/html/item/ordered.js +1 -1
  73. package/lib/node/html/item/unordered.js +1 -1
  74. package/lib/node/html/line/block.js +1 -1
  75. package/lib/node/html/line.js +1 -1
  76. package/lib/node/html/link/email.js +1 -1
  77. package/lib/node/html/link/footnote.js +44 -23
  78. package/lib/node/html/link/hyper.js +1 -1
  79. package/lib/node/html/list/contents.js +1 -1
  80. package/lib/node/html/list/index.js +1 -1
  81. package/lib/node/html/list/ordered.js +1 -1
  82. package/lib/node/html/list/unordered.js +1 -1
  83. package/lib/node/html/listing/block.js +1 -1
  84. package/lib/node/html/listing/inline.js +1 -1
  85. package/lib/node/html/paragraph.js +1 -1
  86. package/lib/node/html/reference.js +1 -1
  87. package/lib/node/html/table.js +1 -1
  88. package/lib/node/html/tableBody.js +1 -1
  89. package/lib/node/html/tableBodyCell.js +1 -1
  90. package/lib/node/html/tableBodyRow.js +1 -1
  91. package/lib/node/html/tableHead.js +1 -1
  92. package/lib/node/html/tableHeadCell.js +1 -1
  93. package/lib/node/html/tableHeadRow.js +1 -1
  94. package/lib/node/html/text/block.js +1 -1
  95. package/lib/node/html/text/comma.js +1 -1
  96. package/lib/node/html/text/emphasised.js +1 -1
  97. package/lib/node/html/text/inline.js +1 -1
  98. package/lib/node/html/text/plain.js +1 -1
  99. package/lib/node/html/text/strong.js +1 -1
  100. package/lib/node/html/text/stronglyEmphasised.js +1 -1
  101. package/lib/node/html/text.js +1 -1
  102. package/lib/node/html/topmost.js +10 -8
  103. package/lib/node/html.js +1 -1
  104. package/lib/node/markdown/blockEnd.js +1 -1
  105. package/lib/node/markdown/blockStart.js +1 -1
  106. package/lib/node/markdown/className.js +1 -1
  107. package/lib/node/markdown/directive/embed.js +1 -1
  108. package/lib/node/markdown/directive/include.js +1 -1
  109. package/lib/node/markdown/error.js +1 -1
  110. package/lib/node/markdown/footnote.js +1 -1
  111. package/lib/node/markdown/hyperlink.js +1 -1
  112. package/lib/node/markdown/image.js +1 -1
  113. package/lib/node/markdown/item/ordered.js +1 -1
  114. package/lib/node/markdown/link/email.js +1 -1
  115. package/lib/node/markdown/link/footnote.js +1 -1
  116. package/lib/node/markdown/listng/block.js +1 -1
  117. package/lib/node/markdown/listng/inline.js +1 -1
  118. package/lib/node/markdown/path.js +1 -1
  119. package/lib/node/markdown/reference.js +1 -1
  120. package/lib/node/markdown/subDivision.js +1 -1
  121. package/lib/node/markdown/text/block.js +1 -1
  122. package/lib/node/markdown/text/plain.js +1 -1
  123. package/lib/node/markdown/text.js +1 -1
  124. package/lib/node/markdown/topmost.js +1 -1
  125. package/lib/node/markdown.js +1 -1
  126. package/lib/node/markdownStyle/amount.js +1 -1
  127. package/lib/node/markdownStyle/argument.js +1 -1
  128. package/lib/node/markdownStyle/arguments.js +1 -1
  129. package/lib/node/markdownStyle/colour.js +1 -1
  130. package/lib/node/markdownStyle/declaration.js +1 -1
  131. package/lib/node/markdownStyle/error.js +1 -1
  132. package/lib/node/markdownStyle/identifier.js +1 -1
  133. package/lib/node/markdownStyle/name.js +1 -1
  134. package/lib/node/markdownStyle/nonsense.js +1 -1
  135. package/lib/node/markdownStyle/pseudoClass.js +1 -1
  136. package/lib/node/markdownStyle/ruleName.js +1 -1
  137. package/lib/node/markdownStyle/ruleSet.js +1 -1
  138. package/lib/node/markdownStyle/selector.js +1 -1
  139. package/lib/node/markdownStyle/selectors.js +1 -1
  140. package/lib/node/markdownStyle/selectorsList.js +1 -1
  141. package/lib/node/markdownStyle/string.js +1 -1
  142. package/lib/node/markdownStyle/topmost.js +1 -1
  143. package/lib/node/markdownStyle/value.js +1 -1
  144. package/lib/node/markdownStyle/values.js +1 -1
  145. package/lib/node/markdownStyle.js +1 -1
  146. package/lib/styleElement/markdown/default.js +1 -1
  147. package/lib/transform/css/ruleSet.js +1 -1
  148. package/lib/transform/css/selectors.js +1 -1
  149. package/lib/transform/html/division.js +4 -4
  150. package/lib/transform/html/footnote.js +3 -22
  151. package/lib/transform/html/heading/index.js +1 -1
  152. package/lib/transform/html/index.js +12 -12
  153. package/lib/transform/html/indexAnchor.js +2 -2
  154. package/lib/transform/html/item/contents.js +1 -1
  155. package/lib/transform/html/item/footnote.js +4 -4
  156. package/lib/transform/html/item/index.js +1 -1
  157. package/lib/transform/html/line.js +1 -8
  158. package/lib/transform/html/link/contents.js +1 -1
  159. package/lib/transform/html/link/footnote.js +1 -1
  160. package/lib/transform/html/list/contents.js +8 -8
  161. package/lib/transform/html/list/footnotes.js +1 -1
  162. package/lib/transform/html/list/index.js +1 -1
  163. package/lib/transform/html/pageNumber.js +1 -1
  164. package/lib/transform/html.js +3 -23
  165. package/lib/transform/markdown/directive/embed.js +3 -3
  166. package/lib/transform/markdown/directive/ignore.js +1 -1
  167. package/lib/transform/markdown/directive/include.js +1 -1
  168. package/lib/transform/markdown/subDivision.js +1 -1
  169. package/lib/transform/markdown.js +1 -1
  170. package/lib/utilities/division.js +9 -135
  171. package/lib/utilities/html.js +3 -12
  172. package/package.json +1 -1
  173. package/src/example/view.js +1 -13
  174. package/src/node/html/division.js +77 -70
  175. package/src/node/html/footnote.js +21 -0
  176. package/src/node/html/heading/index.js +1 -1
  177. package/src/node/html/item/footnote.js +2 -3
  178. package/src/node/html/link/email.js +1 -1
  179. package/src/node/html/link/footnote.js +48 -32
  180. package/src/node/html/topmost.js +9 -13
  181. package/src/transform/html/division.js +2 -2
  182. package/src/transform/html/footnote.js +2 -24
  183. package/src/transform/html/index.js +13 -13
  184. package/src/transform/html/indexAnchor.js +1 -1
  185. package/src/transform/html/item/footnote.js +4 -4
  186. package/src/transform/html/line.js +0 -8
  187. package/src/transform/html/list/contents.js +5 -7
  188. package/src/transform/html.js +2 -26
  189. package/src/transform/markdown/directive/embed.js +2 -2
  190. package/src/utilities/division.js +8 -170
  191. package/src/utilities/html.js +2 -10
  192. package/lib/transform/html/directive/contents.js +0 -116
  193. package/lib/transform/html/directive/footnotes.js +0 -108
  194. package/lib/transform/html/directive/index.js +0 -116
  195. package/lib/transform/html/directive/pageNumber.js +0 -108
  196. package/lib/transform/html/link/nestedFootnote.js +0 -108
  197. package/src/transform/html/directive/contents.js +0 -19
  198. package/src/transform/html/directive/footnotes.js +0 -12
  199. package/src/transform/html/directive/index.js +0 -19
  200. package/src/transform/html/directive/pageNumber.js +0 -12
  201. package/src/transform/html/link/nestedFootnote.js +0 -12
@@ -1,108 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return PageNumberDirectiveHTMLTransform;
9
- }
10
- });
11
- var _html = /*#__PURE__*/ _interop_require_default(require("../../../transform/html"));
12
- function _assert_this_initialized(self) {
13
- if (self === void 0) {
14
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
15
- }
16
- return self;
17
- }
18
- function _call_super(_this, derived, args) {
19
- derived = _get_prototype_of(derived);
20
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
21
- }
22
- function _class_call_check(instance, Constructor) {
23
- if (!(instance instanceof Constructor)) {
24
- throw new TypeError("Cannot call a class as a function");
25
- }
26
- }
27
- function _defineProperties(target, props) {
28
- for(var i = 0; i < props.length; i++){
29
- var descriptor = props[i];
30
- descriptor.enumerable = descriptor.enumerable || false;
31
- descriptor.configurable = true;
32
- if ("value" in descriptor) descriptor.writable = true;
33
- Object.defineProperty(target, descriptor.key, descriptor);
34
- }
35
- }
36
- function _create_class(Constructor, protoProps, staticProps) {
37
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
38
- if (staticProps) _defineProperties(Constructor, staticProps);
39
- return Constructor;
40
- }
41
- function _get_prototype_of(o) {
42
- _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
43
- return o.__proto__ || Object.getPrototypeOf(o);
44
- };
45
- return _get_prototype_of(o);
46
- }
47
- function _inherits(subClass, superClass) {
48
- if (typeof superClass !== "function" && superClass !== null) {
49
- throw new TypeError("Super expression must either be null or a function");
50
- }
51
- subClass.prototype = Object.create(superClass && superClass.prototype, {
52
- constructor: {
53
- value: subClass,
54
- writable: true,
55
- configurable: true
56
- }
57
- });
58
- if (superClass) _set_prototype_of(subClass, superClass);
59
- }
60
- function _interop_require_default(obj) {
61
- return obj && obj.__esModule ? obj : {
62
- default: obj
63
- };
64
- }
65
- function _possible_constructor_return(self, call) {
66
- if (call && (_type_of(call) === "object" || typeof call === "function")) {
67
- return call;
68
- }
69
- return _assert_this_initialized(self);
70
- }
71
- function _set_prototype_of(o, p) {
72
- _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
73
- o.__proto__ = p;
74
- return o;
75
- };
76
- return _set_prototype_of(o, p);
77
- }
78
- function _type_of(obj) {
79
- "@swc/helpers - typeof";
80
- return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
81
- }
82
- function _is_native_reflect_construct() {
83
- try {
84
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
85
- } catch (_) {}
86
- return (_is_native_reflect_construct = function() {
87
- return !!result;
88
- })();
89
- }
90
- var PageNumberDirectiveHTMLTransform = /*#__PURE__*/ function(HTMLTransform) {
91
- _inherits(PageNumberDirectiveHTMLTransform, HTMLTransform);
92
- function PageNumberDirectiveHTMLTransform() {
93
- _class_call_check(this, PageNumberDirectiveHTMLTransform);
94
- return _call_super(this, PageNumberDirectiveHTMLTransform, arguments);
95
- }
96
- _create_class(PageNumberDirectiveHTMLTransform, null, [
97
- {
98
- key: "fromPageNumberDirectiveHTMLNode",
99
- value: function fromPageNumberDirectiveHTMLNode(pageNumberDirectiveHTMLNde) {
100
- var htmlNode = pageNumberDirectiveHTMLNde, pageNumberDirectiveHTMLTransform = _html.default.fromHTMLNode(PageNumberDirectiveHTMLTransform, htmlNode);
101
- return pageNumberDirectiveHTMLTransform;
102
- }
103
- }
104
- ]);
105
- return PageNumberDirectiveHTMLTransform;
106
- }(_html.default);
107
-
108
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy90cmFuc2Zvcm0vaHRtbC9kaXJlY3RpdmUvcGFnZU51bWJlci5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IEhUTUxUcmFuc2Zvcm0gZnJvbSBcIi4uLy4uLy4uL3RyYW5zZm9ybS9odG1sXCJcblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgUGFnZU51bWJlckRpcmVjdGl2ZUhUTUxUcmFuc2Zvcm0gZXh0ZW5kcyBIVE1MVHJhbnNmb3JtIHtcbiAgc3RhdGljIGZyb21QYWdlTnVtYmVyRGlyZWN0aXZlSFRNTE5vZGUocGFnZU51bWJlckRpcmVjdGl2ZUhUTUxOZGUpIHtcbiAgICBjb25zdCBodG1sTm9kZSA9IHBhZ2VOdW1iZXJEaXJlY3RpdmVIVE1MTmRlLCAvLy9cbiAgICAgICAgICBwYWdlTnVtYmVyRGlyZWN0aXZlSFRNTFRyYW5zZm9ybSA9IEhUTUxUcmFuc2Zvcm0uZnJvbUhUTUxOb2RlKFBhZ2VOdW1iZXJEaXJlY3RpdmVIVE1MVHJhbnNmb3JtLCBodG1sTm9kZSk7XG5cbiAgICByZXR1cm4gcGFnZU51bWJlckRpcmVjdGl2ZUhUTUxUcmFuc2Zvcm07XG4gIH1cbn1cbiJdLCJuYW1lcyI6WyJQYWdlTnVtYmVyRGlyZWN0aXZlSFRNTFRyYW5zZm9ybSIsImZyb21QYWdlTnVtYmVyRGlyZWN0aXZlSFRNTE5vZGUiLCJwYWdlTnVtYmVyRGlyZWN0aXZlSFRNTE5kZSIsImh0bWxOb2RlIiwicGFnZU51bWJlckRpcmVjdGl2ZUhUTUxUcmFuc2Zvcm0iLCJIVE1MVHJhbnNmb3JtIiwiZnJvbUhUTUxOb2RlIl0sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7OztlQUlxQkE7OzsyREFGSzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVYLElBQUEsQUFBTUEsaURBQU47Y0FBTUE7YUFBQUE7Z0NBQUFBO2VBQU4sa0JBQU1BOztrQkFBQUE7O1lBQ1pDLEtBQUFBO21CQUFQLFNBQU9BLGdDQUFnQ0MsMEJBQTBCO2dCQUMvRCxJQUFNQyxXQUFXRCw0QkFDWEUsbUNBQW1DQyxhQUFhLENBQUNDLFlBQVksQ0FIbEROLGtDQUdxRkc7Z0JBRXRHLE9BQU9DO1lBQ1Q7OztXQU5tQko7RUFBeUNLLGFBQWEifQ==
@@ -1,108 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return NestedFootnoteLinkHTMLTransform;
9
- }
10
- });
11
- var _html = /*#__PURE__*/ _interop_require_default(require("../../../transform/html"));
12
- function _assert_this_initialized(self) {
13
- if (self === void 0) {
14
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
15
- }
16
- return self;
17
- }
18
- function _call_super(_this, derived, args) {
19
- derived = _get_prototype_of(derived);
20
- return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
21
- }
22
- function _class_call_check(instance, Constructor) {
23
- if (!(instance instanceof Constructor)) {
24
- throw new TypeError("Cannot call a class as a function");
25
- }
26
- }
27
- function _defineProperties(target, props) {
28
- for(var i = 0; i < props.length; i++){
29
- var descriptor = props[i];
30
- descriptor.enumerable = descriptor.enumerable || false;
31
- descriptor.configurable = true;
32
- if ("value" in descriptor) descriptor.writable = true;
33
- Object.defineProperty(target, descriptor.key, descriptor);
34
- }
35
- }
36
- function _create_class(Constructor, protoProps, staticProps) {
37
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
38
- if (staticProps) _defineProperties(Constructor, staticProps);
39
- return Constructor;
40
- }
41
- function _get_prototype_of(o) {
42
- _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
43
- return o.__proto__ || Object.getPrototypeOf(o);
44
- };
45
- return _get_prototype_of(o);
46
- }
47
- function _inherits(subClass, superClass) {
48
- if (typeof superClass !== "function" && superClass !== null) {
49
- throw new TypeError("Super expression must either be null or a function");
50
- }
51
- subClass.prototype = Object.create(superClass && superClass.prototype, {
52
- constructor: {
53
- value: subClass,
54
- writable: true,
55
- configurable: true
56
- }
57
- });
58
- if (superClass) _set_prototype_of(subClass, superClass);
59
- }
60
- function _interop_require_default(obj) {
61
- return obj && obj.__esModule ? obj : {
62
- default: obj
63
- };
64
- }
65
- function _possible_constructor_return(self, call) {
66
- if (call && (_type_of(call) === "object" || typeof call === "function")) {
67
- return call;
68
- }
69
- return _assert_this_initialized(self);
70
- }
71
- function _set_prototype_of(o, p) {
72
- _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
73
- o.__proto__ = p;
74
- return o;
75
- };
76
- return _set_prototype_of(o, p);
77
- }
78
- function _type_of(obj) {
79
- "@swc/helpers - typeof";
80
- return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
81
- }
82
- function _is_native_reflect_construct() {
83
- try {
84
- var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
85
- } catch (_) {}
86
- return (_is_native_reflect_construct = function() {
87
- return !!result;
88
- })();
89
- }
90
- var NestedFootnoteLinkHTMLTransform = /*#__PURE__*/ function(HTMLTransform) {
91
- _inherits(NestedFootnoteLinkHTMLTransform, HTMLTransform);
92
- function NestedFootnoteLinkHTMLTransform() {
93
- _class_call_check(this, NestedFootnoteLinkHTMLTransform);
94
- return _call_super(this, NestedFootnoteLinkHTMLTransform, arguments);
95
- }
96
- _create_class(NestedFootnoteLinkHTMLTransform, null, [
97
- {
98
- key: "fromNestedFootnoteLinkHTMLNode",
99
- value: function fromNestedFootnoteLinkHTMLNode(nestedFootnoteLinkHTMLNode) {
100
- var htmlNode = nestedFootnoteLinkHTMLNode, nestedFootnoteLinkHTMLTransform = _html.default.fromHTMLNode(NestedFootnoteLinkHTMLTransform, htmlNode);
101
- return nestedFootnoteLinkHTMLTransform;
102
- }
103
- }
104
- ]);
105
- return NestedFootnoteLinkHTMLTransform;
106
- }(_html.default);
107
-
108
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy90cmFuc2Zvcm0vaHRtbC9saW5rL25lc3RlZEZvb3Rub3RlLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgSFRNTFRyYW5zZm9ybSBmcm9tIFwiLi4vLi4vLi4vdHJhbnNmb3JtL2h0bWxcIlxuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBOZXN0ZWRGb290bm90ZUxpbmtIVE1MVHJhbnNmb3JtIGV4dGVuZHMgSFRNTFRyYW5zZm9ybSB7XG4gIHN0YXRpYyBmcm9tTmVzdGVkRm9vdG5vdGVMaW5rSFRNTE5vZGUobmVzdGVkRm9vdG5vdGVMaW5rSFRNTE5vZGUpIHtcbiAgICBjb25zdCBodG1sTm9kZSA9IG5lc3RlZEZvb3Rub3RlTGlua0hUTUxOb2RlLCAgLy8vXG4gICAgICAgICAgbmVzdGVkRm9vdG5vdGVMaW5rSFRNTFRyYW5zZm9ybSA9IEhUTUxUcmFuc2Zvcm0uZnJvbUhUTUxOb2RlKE5lc3RlZEZvb3Rub3RlTGlua0hUTUxUcmFuc2Zvcm0sIGh0bWxOb2RlKTtcblxuICAgIHJldHVybiBuZXN0ZWRGb290bm90ZUxpbmtIVE1MVHJhbnNmb3JtO1xuICB9XG59XG4iXSwibmFtZXMiOlsiTmVzdGVkRm9vdG5vdGVMaW5rSFRNTFRyYW5zZm9ybSIsImZyb21OZXN0ZWRGb290bm90ZUxpbmtIVE1MTm9kZSIsIm5lc3RlZEZvb3Rub3RlTGlua0hUTUxOb2RlIiwiaHRtbE5vZGUiLCJuZXN0ZWRGb290bm90ZUxpbmtIVE1MVHJhbnNmb3JtIiwiSFRNTFRyYW5zZm9ybSIsImZyb21IVE1MTm9kZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7ZUFJcUJBOzs7MkRBRks7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFWCxJQUFBLEFBQU1BLGdEQUFOO2NBQU1BO2FBQUFBO2dDQUFBQTtlQUFOLGtCQUFNQTs7a0JBQUFBOztZQUNaQyxLQUFBQTttQkFBUCxTQUFPQSwrQkFBK0JDLDBCQUEwQjtnQkFDOUQsSUFBTUMsV0FBV0QsNEJBQ1hFLGtDQUFrQ0MsYUFBYSxDQUFDQyxZQUFZLENBSGpETixpQ0FHbUZHO2dCQUVwRyxPQUFPQztZQUNUOzs7V0FObUJKO0VBQXdDSyxhQUFhIn0=
@@ -1,19 +0,0 @@
1
- "use strict";
2
-
3
- import HTMLTransform from "../../../transform/html"
4
-
5
- export default class ContentsDirectiveHTMLTransform extends HTMLTransform {
6
- getContentsDirectiveHTMLNode() {
7
- const htmlNode = this.getHTMLNode(),
8
- contentsDirectiveHTMLNode = htmlNode; ///
9
-
10
- return contentsDirectiveHTMLNode;
11
- }
12
-
13
- static fromContentsDirectiveHTMLNode(contentsDirectiveHTMLNde) {
14
- const htmlNode = contentsDirectiveHTMLNde, ///
15
- contentsDirectiveHTMLTransform = HTMLTransform.fromHTMLNode(ContentsDirectiveHTMLTransform, htmlNode);
16
-
17
- return contentsDirectiveHTMLTransform;
18
- }
19
- }
@@ -1,12 +0,0 @@
1
- "use strict";
2
-
3
- import HTMLTransform from "../../../transform/html"
4
-
5
- export default class FootnotesDirectiveHTMLTransform extends HTMLTransform {
6
- static fromFootnotesDirectiveHTMLNode(footnotesDirectiveHTMLNde) {
7
- const htmlNode = footnotesDirectiveHTMLNde, ///
8
- footnotesDirectiveHTMLTransform = HTMLTransform.fromHTMLNode(FootnotesDirectiveHTMLTransform, htmlNode);
9
-
10
- return footnotesDirectiveHTMLTransform;
11
- }
12
- }
@@ -1,19 +0,0 @@
1
- "use strict";
2
-
3
- import HTMLTransform from "../../../transform/html"
4
-
5
- export default class IndexDirectiveHTMLTransform extends HTMLTransform {
6
- getIndexDirectiveHTMLNode() {
7
- const htmlNode = this.getHTMLNode(),
8
- indexDirectiveHTMLNode = htmlNode; ///
9
-
10
- return indexDirectiveHTMLNode;
11
- }
12
-
13
- static fromIndexDirectiveHTMLNode(indexDirectiveHTMLNde) {
14
- const htmlNode = indexDirectiveHTMLNde, ///
15
- indexDirectiveHTMLTransform = HTMLTransform.fromHTMLNode(IndexDirectiveHTMLTransform, htmlNode);
16
-
17
- return indexDirectiveHTMLTransform;
18
- }
19
- }
@@ -1,12 +0,0 @@
1
- "use strict";
2
-
3
- import HTMLTransform from "../../../transform/html"
4
-
5
- export default class PageNumberDirectiveHTMLTransform extends HTMLTransform {
6
- static fromPageNumberDirectiveHTMLNode(pageNumberDirectiveHTMLNde) {
7
- const htmlNode = pageNumberDirectiveHTMLNde, ///
8
- pageNumberDirectiveHTMLTransform = HTMLTransform.fromHTMLNode(PageNumberDirectiveHTMLTransform, htmlNode);
9
-
10
- return pageNumberDirectiveHTMLTransform;
11
- }
12
- }
@@ -1,12 +0,0 @@
1
- "use strict";
2
-
3
- import HTMLTransform from "../../../transform/html"
4
-
5
- export default class NestedFootnoteLinkHTMLTransform extends HTMLTransform {
6
- static fromNestedFootnoteLinkHTMLNode(nestedFootnoteLinkHTMLNode) {
7
- const htmlNode = nestedFootnoteLinkHTMLNode, ///
8
- nestedFootnoteLinkHTMLTransform = HTMLTransform.fromHTMLNode(NestedFootnoteLinkHTMLTransform, htmlNode);
9
-
10
- return nestedFootnoteLinkHTMLTransform;
11
- }
12
- }