@kreuzberg/html-to-markdown-node 3.4.0-rc.15 → 3.4.0-rc.16
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/index.d.ts +13 -13
- package/package.json +10 -10
package/index.d.ts
CHANGED
|
@@ -194,10 +194,10 @@ export interface JsImageMetadata {
|
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
export declare const enum JsImageType {
|
|
197
|
-
DataUri = '
|
|
198
|
-
InlineSvg = '
|
|
199
|
-
External = '
|
|
200
|
-
Relative = '
|
|
197
|
+
DataUri = 'DataUri',
|
|
198
|
+
InlineSvg = 'InlineSvg',
|
|
199
|
+
External = 'External',
|
|
200
|
+
Relative = 'Relative'
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
export interface JsLinkMetadata {
|
|
@@ -215,12 +215,12 @@ export declare const enum JsLinkStyle {
|
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
export declare const enum JsLinkType {
|
|
218
|
-
Anchor = '
|
|
219
|
-
Internal = '
|
|
220
|
-
External = '
|
|
221
|
-
Email = '
|
|
222
|
-
Phone = '
|
|
223
|
-
Other = '
|
|
218
|
+
Anchor = 'Anchor',
|
|
219
|
+
Internal = 'Internal',
|
|
220
|
+
External = 'External',
|
|
221
|
+
Email = 'Email',
|
|
222
|
+
Phone = 'Phone',
|
|
223
|
+
Other = 'Other'
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
export declare const enum JsListIndentType {
|
|
@@ -392,9 +392,9 @@ export interface JsStructuredData {
|
|
|
392
392
|
}
|
|
393
393
|
|
|
394
394
|
export declare const enum JsStructuredDataType {
|
|
395
|
-
JsonLd = '
|
|
396
|
-
Microdata = '
|
|
397
|
-
RDFa = '
|
|
395
|
+
JsonLd = 'JsonLd',
|
|
396
|
+
Microdata = 'Microdata',
|
|
397
|
+
RDFa = 'RDFa'
|
|
398
398
|
}
|
|
399
399
|
|
|
400
400
|
export interface JsTableData {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kreuzberg/html-to-markdown-node",
|
|
3
|
-
"version": "3.4.0-rc.
|
|
3
|
+
"version": "3.4.0-rc.16",
|
|
4
4
|
"description": "High-performance HTML to Markdown converter - Node.js native bindings",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"@napi-rs/cli": "^3.6.2"
|
|
57
57
|
},
|
|
58
58
|
"optionalDependencies": {
|
|
59
|
-
"@kreuzberg/html-to-markdown-node-darwin-arm64": "3.4.0-rc.
|
|
60
|
-
"@kreuzberg/html-to-markdown-node-darwin-x64": "3.4.0-rc.
|
|
61
|
-
"@kreuzberg/html-to-markdown-node-linux-arm-gnueabihf": "3.4.0-rc.
|
|
62
|
-
"@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "3.4.0-rc.
|
|
63
|
-
"@kreuzberg/html-to-markdown-node-linux-arm64-musl": "3.4.0-rc.
|
|
64
|
-
"@kreuzberg/html-to-markdown-node-linux-x64-gnu": "3.4.0-rc.
|
|
65
|
-
"@kreuzberg/html-to-markdown-node-linux-x64-musl": "3.4.0-rc.
|
|
66
|
-
"@kreuzberg/html-to-markdown-node-win32-arm64-msvc": "3.4.0-rc.
|
|
67
|
-
"@kreuzberg/html-to-markdown-node-win32-x64-msvc": "3.4.0-rc.
|
|
59
|
+
"@kreuzberg/html-to-markdown-node-darwin-arm64": "3.4.0-rc.16",
|
|
60
|
+
"@kreuzberg/html-to-markdown-node-darwin-x64": "3.4.0-rc.16",
|
|
61
|
+
"@kreuzberg/html-to-markdown-node-linux-arm-gnueabihf": "3.4.0-rc.16",
|
|
62
|
+
"@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "3.4.0-rc.16",
|
|
63
|
+
"@kreuzberg/html-to-markdown-node-linux-arm64-musl": "3.4.0-rc.16",
|
|
64
|
+
"@kreuzberg/html-to-markdown-node-linux-x64-gnu": "3.4.0-rc.16",
|
|
65
|
+
"@kreuzberg/html-to-markdown-node-linux-x64-musl": "3.4.0-rc.16",
|
|
66
|
+
"@kreuzberg/html-to-markdown-node-win32-arm64-msvc": "3.4.0-rc.16",
|
|
67
|
+
"@kreuzberg/html-to-markdown-node-win32-x64-msvc": "3.4.0-rc.16"
|
|
68
68
|
}
|
|
69
69
|
}
|