@ox-content/napi 2.75.0 → 2.76.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.
Files changed (2) hide show
  1. package/index.js +8 -0
  2. package/package.json +6 -6
package/index.js CHANGED
@@ -112,6 +112,14 @@ module.exports.render = binding.render;
112
112
  module.exports.transform = binding.transform;
113
113
  module.exports.transformAsync = binding.transformAsync;
114
114
  module.exports.transformMdastRaw = binding.transformMdastRaw;
115
+ module.exports.sanitizeHtml = binding.sanitizeHtml;
116
+ module.exports.transformMediaEmbeds = binding.transformMediaEmbeds;
117
+ module.exports.transformPmEmbeds = binding.transformPmEmbeds;
118
+ module.exports.transformTabsEmbeds = binding.transformTabsEmbeds;
119
+ module.exports.transformYoutubeEmbeds = binding.transformYoutubeEmbeds;
120
+ module.exports.extractCodeBlocks = binding.extractCodeBlocks;
121
+ module.exports.lintCodeBlocks = binding.lintCodeBlocks;
122
+ module.exports.extractDocsTests = binding.extractDocsTests;
115
123
  module.exports.version = binding.version;
116
124
  module.exports.extractFileDocs = binding.extractFileDocs;
117
125
  module.exports.extractFileDocEntries = binding.extractFileDocEntries;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ox-content/napi",
3
- "version": "2.75.0",
3
+ "version": "2.76.0",
4
4
  "description": "Node.js bindings for Ox Content - High-performance Markdown parser",
5
5
  "keywords": [
6
6
  "markdown",
@@ -45,10 +45,10 @@
45
45
  ]
46
46
  },
47
47
  "optionalDependencies": {
48
- "@ox-content/binding-darwin-x64": "2.75.0",
49
- "@ox-content/binding-darwin-arm64": "2.75.0",
50
- "@ox-content/binding-linux-x64-gnu": "2.75.0",
51
- "@ox-content/binding-linux-arm64-gnu": "2.75.0",
52
- "@ox-content/binding-win32-x64-msvc": "2.75.0"
48
+ "@ox-content/binding-darwin-x64": "2.76.0",
49
+ "@ox-content/binding-darwin-arm64": "2.76.0",
50
+ "@ox-content/binding-linux-x64-gnu": "2.76.0",
51
+ "@ox-content/binding-linux-arm64-gnu": "2.76.0",
52
+ "@ox-content/binding-win32-x64-msvc": "2.76.0"
53
53
  }
54
54
  }