@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 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
@@ -106,4 +106,4 @@ const FencedBlockType = 'fencedBlock';
106
106
  exports.FencedBlockTokenizer = FencedBlockTokenizer;
107
107
  exports.FencedBlockType = FencedBlockType;
108
108
  exports["default"] = FencedBlockTokenizer;
109
- exports.fencedMatch = match;
109
+ exports.fencedBlockMatch = match;
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 fencedMatch };
102
+ export { FencedBlockTokenizer, FencedBlockType, FencedBlockTokenizer as default, match as fencedBlockMatch };
@@ -1,4 +1,4 @@
1
- export { match as fencedMatch } from './match';
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.0",
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.0",
38
- "@yozora/character": "^2.0.0-alpha.0",
39
- "@yozora/core-tokenizer": "^2.0.0-alpha.0"
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": "0171501339c49ffd02ed16a63447fa20a47a29a7"
41
+ "gitHead": "86202e1d2b03ccfc2ab030517d9d314f7aee7666"
42
42
  }