@kreuzberg/html-to-markdown-node 3.4.0-rc.44 → 3.4.0-rc.45
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 +8 -0
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -426,6 +426,14 @@ export declare const enum JsTextDirection {
|
|
|
426
426
|
Auto = 'auto'
|
|
427
427
|
}
|
|
428
428
|
|
|
429
|
+
export declare const enum JsVisitResult {
|
|
430
|
+
Continue = 'Continue',
|
|
431
|
+
Custom = 'Custom',
|
|
432
|
+
Skip = 'Skip',
|
|
433
|
+
PreserveHtml = 'PreserveHtml',
|
|
434
|
+
Error = 'Error'
|
|
435
|
+
}
|
|
436
|
+
|
|
429
437
|
export declare const enum JsWarningKind {
|
|
430
438
|
ImageExtractionFailed = 'image_extraction_failed',
|
|
431
439
|
EncodingFallback = 'encoding_fallback',
|
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.45",
|
|
4
4
|
"description": "High-performance HTML to Markdown converter",
|
|
5
5
|
"homepage": "https://github.com/kreuzberg-dev/html-to-markdown",
|
|
6
6
|
"bugs": "https://github.com/kreuzberg-dev/html-to-markdown/issues",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"node": ">= 18"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@kreuzberg/html-to-markdown-node-darwin-arm64": "3.4.0-rc.
|
|
43
|
-
"@kreuzberg/html-to-markdown-node-darwin-x64": "3.4.0-rc.
|
|
44
|
-
"@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "3.4.0-rc.
|
|
45
|
-
"@kreuzberg/html-to-markdown-node-linux-x64-gnu": "3.4.0-rc.
|
|
46
|
-
"@kreuzberg/html-to-markdown-node-win32-x64-msvc": "3.4.0-rc.
|
|
42
|
+
"@kreuzberg/html-to-markdown-node-darwin-arm64": "3.4.0-rc.45",
|
|
43
|
+
"@kreuzberg/html-to-markdown-node-darwin-x64": "3.4.0-rc.45",
|
|
44
|
+
"@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "3.4.0-rc.45",
|
|
45
|
+
"@kreuzberg/html-to-markdown-node-linux-x64-gnu": "3.4.0-rc.45",
|
|
46
|
+
"@kreuzberg/html-to-markdown-node-win32-x64-msvc": "3.4.0-rc.45"
|
|
47
47
|
}
|
|
48
48
|
}
|