mdka 1.5.0 → 1.5.2

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/README.md +7 -7
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -29,8 +29,8 @@ $ npm install mdka
29
29
  const { fromHtml } = require("mdka")
30
30
 
31
31
  console.log(fromHtml("<p>Hello, world.</p>"))
32
- # Hello, world.
33
- #
32
+ // Hello, world.
33
+ //
34
34
  ```
35
35
 
36
36
  ### Convert from HTML file
@@ -39,8 +39,8 @@ console.log(fromHtml("<p>Hello, world.</p>"))
39
39
  const { fromFile } = require("mdka")
40
40
 
41
41
  console.log(fromFile("tests/fixtures/simple-01.html"))
42
- # Hello, world.
43
- #
42
+ // Hello, world.
43
+ //
44
44
  ```
45
45
 
46
46
  ### Convert from HTML text and write the result to file
@@ -61,7 +61,7 @@ fromFileToFile("tests/fixtures/simple-01.html", "tests/tmp/out.md", false)
61
61
 
62
62
  ---
63
63
 
64
- ## 🤝 Open-source, with care
64
+ ## Open-source, with care
65
65
 
66
66
  This project is lovingly built and maintained by volunteers.
67
67
  We hope it helps streamline your API development.
@@ -69,5 +69,5 @@ Please understand that the project has its own direction — while we welcome fe
69
69
 
70
70
  ## Acknowledgements
71
71
 
72
- Depends on [Servo](https://servo.org/)'s [html5ever](https://github.com/servo/html5ever) / markup5ever.
73
- Also, on [PyO3](https://github.com/PyO3)'s [pyo3](https://github.com/PyO3/pyo3) / [maturin](https://github.com/PyO3/maturin) on bindings for Python. [napi-rs](https://github.com/napi-rs/napi-rs) for binding for [Node.js](https://nodejs.org/).
72
+ Depends on Servo's [html5ever](https://github.com/servo/html5ever) / markup5ever.
73
+ Also, on PyO3's [pyo3](https://github.com/PyO3/pyo3) / [maturin](https://github.com/PyO3/maturin) on bindings for Python. [napi-rs](https://github.com/napi-rs/napi-rs) for binding for Node.js.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdka",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "description": "HTML to Markdown converter",
5
5
  "author": "nabbisen<nabbisen@scqr.net>",
6
6
  "license": "Apache-2.0",
@@ -67,8 +67,8 @@
67
67
  "prepublishOnly": "napi prepublish --skip-gh-release"
68
68
  },
69
69
  "optionalDependencies": {
70
- "@mdka/lib-linux-x64-gnu": "1.5.0",
71
- "@mdka/lib-darwin-arm64": "1.5.0",
72
- "@mdka/lib-win32-x64-msvc": "1.5.0"
70
+ "@mdka/lib-linux-x64-gnu": "1.5.2",
71
+ "@mdka/lib-darwin-arm64": "1.5.2",
72
+ "@mdka/lib-win32-x64-msvc": "1.5.2"
73
73
  }
74
74
  }