@kreuzberg/html-to-markdown-node 3.4.0-rc.13 → 3.4.0-rc.15

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.
Files changed (2) hide show
  1. package/index.d.ts +2 -0
  2. package/package.json +10 -10
package/index.d.ts CHANGED
@@ -9,6 +9,8 @@ export declare class JsConversionOptionsBuilder {
9
9
  build(): JsConversionOptions
10
10
  }
11
11
 
12
+ export declare function convert(html: string, options?: JsConversionOptions | undefined | null, visitor?: object | undefined | null): JsConversionResult
13
+
12
14
  export interface JsAnnotationKind {
13
15
  annotation_type: string
14
16
  url?: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kreuzberg/html-to-markdown-node",
3
- "version": "3.4.0-rc.13",
3
+ "version": "3.4.0-rc.15",
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.13",
60
- "@kreuzberg/html-to-markdown-node-darwin-x64": "3.4.0-rc.13",
61
- "@kreuzberg/html-to-markdown-node-linux-arm-gnueabihf": "3.4.0-rc.13",
62
- "@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "3.4.0-rc.13",
63
- "@kreuzberg/html-to-markdown-node-linux-arm64-musl": "3.4.0-rc.13",
64
- "@kreuzberg/html-to-markdown-node-linux-x64-gnu": "3.4.0-rc.13",
65
- "@kreuzberg/html-to-markdown-node-linux-x64-musl": "3.4.0-rc.13",
66
- "@kreuzberg/html-to-markdown-node-win32-arm64-msvc": "3.4.0-rc.13",
67
- "@kreuzberg/html-to-markdown-node-win32-x64-msvc": "3.4.0-rc.13"
59
+ "@kreuzberg/html-to-markdown-node-darwin-arm64": "3.4.0-rc.15",
60
+ "@kreuzberg/html-to-markdown-node-darwin-x64": "3.4.0-rc.15",
61
+ "@kreuzberg/html-to-markdown-node-linux-arm-gnueabihf": "3.4.0-rc.15",
62
+ "@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "3.4.0-rc.15",
63
+ "@kreuzberg/html-to-markdown-node-linux-arm64-musl": "3.4.0-rc.15",
64
+ "@kreuzberg/html-to-markdown-node-linux-x64-gnu": "3.4.0-rc.15",
65
+ "@kreuzberg/html-to-markdown-node-linux-x64-musl": "3.4.0-rc.15",
66
+ "@kreuzberg/html-to-markdown-node-win32-arm64-msvc": "3.4.0-rc.15",
67
+ "@kreuzberg/html-to-markdown-node-win32-x64-msvc": "3.4.0-rc.15"
68
68
  }
69
69
  }