highmark-markdown 0.0.183 → 0.0.186

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.
package/src/ruleNames.js CHANGED
@@ -7,6 +7,7 @@ export const TABLE_RULE_NAME = "table";
7
7
  export const ERROR_RULE_NAME = "error";
8
8
  export const ANCHOR_RULE_NAME = "anchor";
9
9
  export const IMPORT_RULE_NAME = "import";
10
+ export const IMPORTS_RULE_NAME = "imports";
10
11
  export const CONTENTS_RULE_NAME = "contents";
11
12
  export const FOOTNOTE_RULE_NAME = "footnote";
12
13
  export const DIVISION_RULE_NAME = "division";
@@ -28,7 +29,7 @@ export const STRONG_TEXT_RULE_NAME = "strongText";
28
29
  export const SUB_DIVISION_RULE_NAME = "subDivision";
29
30
  export const ORDERED_LIST_RULE_NAME = "orderedList";
30
31
  export const BLOCK_LISTING_RULE_NAME = "blockListing";
31
- export const CONTENTS_link_RULE_NAME = "contentsLink";
32
+ export const CONTENTS_LINK_RULE_NAME = "contentsLink";
32
33
  export const CONTENTS_ITEM_RULE_NAME = "contentsItem";
33
34
  export const CONTENTS_LIST_RULE_NAME = "contentsList";
34
35
  export const FOOTNOTE_ITEM_RULE_NAME = "footnoteItem";
@@ -60,6 +61,7 @@ const ruleNames = {
60
61
  ERROR_RULE_NAME,
61
62
  ANCHOR_RULE_NAME,
62
63
  IMPORT_RULE_NAME,
64
+ IMPORTS_RULE_NAME,
63
65
  CONTENTS_RULE_NAME,
64
66
  FOOTNOTE_RULE_NAME,
65
67
  DIVISION_RULE_NAME,
@@ -81,7 +83,7 @@ const ruleNames = {
81
83
  SUB_DIVISION_RULE_NAME,
82
84
  ORDERED_LIST_RULE_NAME,
83
85
  BLOCK_LISTING_RULE_NAME,
84
- CONTENTS_link_RULE_NAME,
86
+ CONTENTS_LINK_RULE_NAME,
85
87
  CONTENTS_ITEM_RULE_NAME,
86
88
  CONTENTS_LIST_RULE_NAME,
87
89
  FOOTNOTE_ITEM_RULE_NAME,