@bhsd/codemirror-mediawiki 2.20.3 → 2.21.1
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/README.md +13 -0
- package/dist/escape.d.ts +2 -1
- package/dist/hover.d.ts +25 -0
- package/dist/main.min.js +18 -18
- package/dist/matchTag.d.ts +2 -2
- package/dist/mw.min.js +23 -23
- package/dist/mwConfig.mjs +14 -7
- package/dist/openLinks.d.ts +2 -1
- package/dist/ref.d.ts +3 -15
- package/dist/signature.d.ts +3 -0
- package/dist/wiki.min.js +23 -23
- package/i18n/en.json +4 -2
- package/i18n/zh-hans.json +4 -2
- package/i18n/zh-hant.json +4 -2
- package/mediawiki.css +18 -3
- package/package.json +30 -35
- package/dist/openExtLinks.d.ts +0 -2
- package/mw/config.ts +0 -185
- package/src/linter.ts +0 -149
- package/src/static.ts +0 -62
package/dist/matchTag.d.ts
CHANGED
|
@@ -32,5 +32,5 @@ export declare const getTag: (state: EditorState, node: SyntaxNode) => Tag | nul
|
|
|
32
32
|
* @param pos 位置
|
|
33
33
|
*/
|
|
34
34
|
export declare const matchTag: (state: EditorState, pos: number) => TagMatchResult | null;
|
|
35
|
-
|
|
36
|
-
export
|
|
35
|
+
declare const _default: StateField<DecorationSet>;
|
|
36
|
+
export default _default;
|