@bhsd/codemirror-mediawiki 2.12.2 → 2.12.3

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/dist/config.d.ts CHANGED
@@ -88,5 +88,25 @@ declare const modeConfig: {
88
88
  * @see https://lezer.codemirror.net/docs/ref/#highlight.Tag%5Edefine
89
89
  */
90
90
  readonly tokenTable: Record<string, Tag>;
91
+ htmlAttrs: string[];
92
+ elementAttrs: {
93
+ table: string[];
94
+ td: string[];
95
+ th: string[];
96
+ blockquote: string[];
97
+ q: string[];
98
+ ins: string[];
99
+ del: string[];
100
+ time: string[];
101
+ ol: string[];
102
+ li: string[];
103
+ img: string[];
104
+ rt: string[];
105
+ data: string[];
106
+ meta: string[];
107
+ link: string[];
108
+ gallery: string[];
109
+ poem: string[];
110
+ };
91
111
  };
92
112
  export default modeConfig;