@haibun/parse-md 1.67.0 → 1.69.0
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/build/parse-md.d.ts +6 -6
- package/build/parse-md.d.ts.map +1 -1
- package/build/parse-md.js +3 -3
- package/build/parse-md.js.map +1 -1
- package/package.json +2 -2
package/build/parse-md.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { AStepper } from '@haibun/core/
|
|
1
|
+
import { AStepper } from '@haibun/core/lib/astepper.js';
|
|
2
2
|
declare const ParseMD: {
|
|
3
3
|
new (): {
|
|
4
4
|
steps: {
|
|
5
5
|
conformance: {
|
|
6
6
|
gwta: string;
|
|
7
|
-
action: () => Promise<import("@haibun/core/
|
|
7
|
+
action: () => Promise<import("@haibun/core/lib/defs.js").TNotOKActionResult | import("@haibun/core/lib/defs.js").TOKActionResult>;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
-
world?: import("@haibun/core/
|
|
11
|
-
cycles?: import("@haibun/core/
|
|
12
|
-
setWorld(world: import("@haibun/core/
|
|
13
|
-
getWorld(): import("@haibun/core/
|
|
10
|
+
world?: import("@haibun/core/lib/defs.js").TWorld;
|
|
11
|
+
cycles?: import("@haibun/core/lib/defs.js").IStepperCycles;
|
|
12
|
+
setWorld(world: import("@haibun/core/lib/defs.js").TWorld, steppers: AStepper[]): Promise<void>;
|
|
13
|
+
getWorld(): import("@haibun/core/lib/defs.js").TWorld;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
export default ParseMD;
|
package/build/parse-md.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parse-md.d.ts","sourceRoot":"","sources":["../src/parse-md.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"parse-md.d.ts","sourceRoot":"","sources":["../src/parse-md.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAIxD,QAAA,MAAM,OAAO;;;;;;;;;;;;;CAgBZ,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
package/build/parse-md.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { OK } from '@haibun/core/
|
|
2
|
-
import { actionNotOK } from '@haibun/core/
|
|
1
|
+
import { OK } from '@haibun/core/lib/defs.js';
|
|
2
|
+
import { actionNotOK } from '@haibun/core/lib/util/index.js';
|
|
3
3
|
import { parseMatches } from './parse.js';
|
|
4
|
-
import { AStepper } from '@haibun/core/
|
|
4
|
+
import { AStepper } from '@haibun/core/lib/astepper.js';
|
|
5
5
|
const conformance = /(?!\n|. )\b([A-Z].*? must .*?\.)/;
|
|
6
6
|
const ParseMD = class ParseMD extends AStepper {
|
|
7
7
|
steps = {
|
package/build/parse-md.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parse-md.js","sourceRoot":"","sources":["../src/parse-md.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"parse-md.js","sourceRoot":"","sources":["../src/parse-md.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,0BAA0B,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAExD,MAAM,WAAW,GAAG,kCAAkC,CAAC;AAEvD,MAAM,OAAO,GAAG,MAAM,OAAQ,SAAQ,QAAQ;IAC7C,KAAK,GAAG;QACP,WAAW,EAAE;YACZ,IAAI,EAAE,oDAAoD;YAC1D,MAAM,EAAE,KAAK,IAAI,EAAE;gBAClB,IAAI,CAAC;oBACJ,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC;wBAC1C,MAAM,YAAY,CAAC,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,IAAI,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC;oBAC/D,CAAC;gBACF,CAAC;gBAAC,OAAO,CAAC,EAAE,CAAC;oBACZ,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;gBAC/B,CAAC;gBACD,OAAO,EAAE,CAAC;YACX,CAAC;SACD;KACD,CAAC;CACF,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haibun/parse-md",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.69.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"files": ["build/**"],
|
|
7
7
|
"main": "build/parse-md.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"keywords": [],
|
|
17
17
|
"author": "",
|
|
18
18
|
"license": "ISC",
|
|
19
|
-
"dependencies": { "@haibun/core": "1.
|
|
19
|
+
"dependencies": { "@haibun/core": "1.69.0", "turndown": "^7.1.1" },
|
|
20
20
|
"devDependencies": { "@types/node-fetch": "^2.5.10" },
|
|
21
21
|
"gitHead": "7cf9680bd922fb622fb59f1e6bf5b65284cb8fd5"
|
|
22
22
|
}
|