@yozora/tokenizer-fenced-block 2.0.0-alpha.0 → 2.0.0-alpha.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 +0 -2
- package/lib/cjs/index.js +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/types/index.d.ts +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -107,7 +107,6 @@
|
|
|
107
107
|
[@yozora/tokenizer-link]: https://github.com/yozorajs/yozora/tree/main/tokenizers/link#readme
|
|
108
108
|
[@yozora/tokenizer-link-reference]: https://github.com/yozorajs/yozora/tree/main/tokenizers/link-reference#readme
|
|
109
109
|
[@yozora/tokenizer-list]: https://github.com/yozorajs/yozora/tree/main/tokenizers/list#readme
|
|
110
|
-
[@yozora/tokenizer-list-item]: https://github.com/yozorajs/yozora/tree/main/tokenizers/list-item#readme
|
|
111
110
|
[@yozora/tokenizer-math]: https://github.com/yozorajs/yozora/tree/main/tokenizers/math#readme
|
|
112
111
|
[@yozora/tokenizer-paragraph]: https://github.com/yozorajs/yozora/tree/main/tokenizers/paragraph#readme
|
|
113
112
|
[@yozora/tokenizer-setext-heading]: https://github.com/yozorajs/yozora/tree/main/tokenizers/setext-heading#readme
|
|
@@ -167,7 +166,6 @@
|
|
|
167
166
|
[doc-@yozora/tokenizer-definition]: https://yozora.guanghechen.com/docs/package/tokenizer-definition
|
|
168
167
|
[doc-@yozora/tokenizer-link-reference]: https://yozora.guanghechen.com/docs/package/tokenizer-link-reference
|
|
169
168
|
[doc-@yozora/tokenizer-list]: https://yozora.guanghechen.com/docs/package/tokenizer-list
|
|
170
|
-
[doc-@yozora/tokenizer-list-item]: https://yozora.guanghechen.com/docs/package/tokenizer-list-item
|
|
171
169
|
[doc-@yozora/tokenizer-math]: https://yozora.guanghechen.com/docs/package/tokenizer-math
|
|
172
170
|
[doc-@yozora/tokenizer-paragraph]: https://yozora.guanghechen.com/docs/package/tokenizer-paragraph
|
|
173
171
|
[doc-@yozora/tokenizer-setext-heading]: https://yozora.guanghechen.com/docs/package/tokenizer-setext-heading
|
package/lib/cjs/index.js
CHANGED
package/lib/esm/index.js
CHANGED
|
@@ -99,4 +99,4 @@ class FencedBlockTokenizer extends BaseBlockTokenizer {
|
|
|
99
99
|
|
|
100
100
|
const FencedBlockType = 'fencedBlock';
|
|
101
101
|
|
|
102
|
-
export { FencedBlockTokenizer, FencedBlockType, FencedBlockTokenizer as default, match as
|
|
102
|
+
export { FencedBlockTokenizer, FencedBlockType, FencedBlockTokenizer as default, match as fencedBlockMatch };
|
package/lib/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { match as
|
|
1
|
+
export { match as fencedBlockMatch } from './match';
|
|
2
2
|
export { FencedBlockTokenizer, FencedBlockTokenizer as default } from './tokenizer';
|
|
3
3
|
export { FencedBlockType } from './types';
|
|
4
4
|
export type { IFencedBlockHookContext, IToken as IFencedBlockToken, ITokenizerProps as IFencedBlockTokenizerProps, } from './types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yozora/tokenizer-fenced-block",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.1",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "guanghechen",
|
|
6
6
|
"url": "https://github.com/guanghechen/"
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"prepublishOnly": "cross-env ROLLUP_SHOULD_SOURCEMAP=false yarn build"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@yozora/ast": "^2.0.0-alpha.
|
|
38
|
-
"@yozora/character": "^2.0.0-alpha.
|
|
39
|
-
"@yozora/core-tokenizer": "^2.0.0-alpha.
|
|
37
|
+
"@yozora/ast": "^2.0.0-alpha.1",
|
|
38
|
+
"@yozora/character": "^2.0.0-alpha.1",
|
|
39
|
+
"@yozora/core-tokenizer": "^2.0.0-alpha.1"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "86202e1d2b03ccfc2ab030517d9d314f7aee7666"
|
|
42
42
|
}
|