@yozora/tokenizer-footnote 2.0.2 → 2.0.4

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2020-2021 guanghechen (me.guanghechen@gmail.com)
3
+ Copyright (c) 2020-2022 guanghechen (me.guanghechen@gmail.com)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-footnote",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "author": {
5
5
  "name": "guanghechen",
6
6
  "url": "https://github.com/guanghechen/"
@@ -30,15 +30,15 @@
30
30
  ],
31
31
  "scripts": {
32
32
  "build": "cross-env NODE_ENV=production rollup -c ../../rollup.config.js",
33
- "prebuild": "rimraf lib/ && tsc -p tsconfig.src.json --emitDeclarationOnly",
33
+ "prebuild": "rimraf lib/",
34
34
  "prepublishOnly": "cross-env ROLLUP_SHOULD_SOURCEMAP=false yarn build",
35
35
  "test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
36
36
  },
37
37
  "dependencies": {
38
- "@yozora/ast": "^2.0.2",
39
- "@yozora/character": "^2.0.2",
40
- "@yozora/core-tokenizer": "^2.0.2",
41
- "@yozora/tokenizer-link": "^2.0.2"
38
+ "@yozora/ast": "^2.0.4",
39
+ "@yozora/character": "^2.0.4",
40
+ "@yozora/core-tokenizer": "^2.0.4",
41
+ "@yozora/tokenizer-link": "^2.0.4"
42
42
  },
43
- "gitHead": "6911295e9eacfa29563fe93494704190e50625fd"
43
+ "gitHead": "c980b95254394dcacba0cbb4bea251350b09397c"
44
44
  }
@@ -1,15 +0,0 @@
1
- import type { IMatchInlineHookCreator } from '@yozora/core-tokenizer';
2
- import type { IDelimiter, IThis, IToken, T } from './types';
3
- /**
4
- * An inline footnote consists of a footnote text followed immediately by a right
5
- * square bracket ']'.
6
- *
7
- * Like the inline links, footnote could not be contained by other footnote.
8
- *
9
- * @see https://github.com/syntax-tree/mdast-util-footnote
10
- * @see https://github.com/remarkjs/remark-footnotes
11
- * @see https://github.com/syntax-tree/mdast#link
12
- * @see https://github.github.com/gfm/#links
13
- * @see https://www.markdownguide.org/extended-syntax/#footnotes
14
- */
15
- export declare const match: IMatchInlineHookCreator<T, IDelimiter, IToken, IThis>;
@@ -1,3 +0,0 @@
1
- import type { IParseInlineHookCreator } from '@yozora/core-tokenizer';
2
- import type { INode, IThis, IToken, T } from './types';
3
- export declare const parse: IParseInlineHookCreator<T, IToken, INode, IThis>;
@@ -1,16 +0,0 @@
1
- import type { IInlineTokenizer, IMatchInlineHookCreator, IParseInlineHookCreator } from '@yozora/core-tokenizer';
2
- import { BaseInlineTokenizer } from '@yozora/core-tokenizer';
3
- import type { IDelimiter, INode, IThis, IToken, ITokenizerProps, T } from './types';
4
- /**
5
- * Lexical Analyzer for inline footnote.
6
- * @see https://github.com/syntax-tree/mdast-util-footnote
7
- * @see https://github.com/remarkjs/remark-footnotes
8
- * @see https://github.com/syntax-tree/mdast#link
9
- * @see https://github.github.com/gfm/#links
10
- * @see https://www.markdownguide.org/extended-syntax/#footnotes
11
- */
12
- export declare class FootnoteTokenizer extends BaseInlineTokenizer<T, IDelimiter, IToken, INode, IThis> implements IInlineTokenizer<T, IDelimiter, IToken, INode, IThis> {
13
- constructor(props?: ITokenizerProps);
14
- readonly match: IMatchInlineHookCreator<T, IDelimiter, IToken, IThis>;
15
- readonly parse: IParseInlineHookCreator<T, IToken, INode, IThis>;
16
- }
@@ -1,14 +0,0 @@
1
- import type { Footnote, FootnoteType } from '@yozora/ast';
2
- import type { IBaseInlineTokenizerProps, IPartialYastInlineToken, ITokenizer, IYastTokenDelimiter } from '@yozora/core-tokenizer';
3
- export declare type T = FootnoteType;
4
- export declare type INode = Footnote;
5
- export declare const uniqueName = "@yozora/tokenizer-footnote";
6
- export declare type IToken = IPartialYastInlineToken<T>;
7
- export interface IDelimiter extends IYastTokenDelimiter {
8
- /**
9
- * IDelimiter type.
10
- */
11
- type: 'opener' | 'closer';
12
- }
13
- export declare type IThis = ITokenizer;
14
- export declare type ITokenizerProps = Partial<IBaseInlineTokenizerProps>;