html-to-markdown 2.5.2 → 2.5.3
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.
- checksums.yaml +4 -4
- data/Cargo.toml +2 -2
- data/README.md +5 -2
- data/lib/html_to_markdown/version.rb +1 -1
- metadata +1 -2
- data/lib/bin/html-to-markdown +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4c670930402ff8c5400d263d0e17e42248437968c6cec4dfe15020395723261c
|
|
4
|
+
data.tar.gz: 5f8a56c6acd7ac3e63bf9ec9e24aaa4dc097e7caa539f9ec4f6a866c35aa67cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 61672702d8e7e6554fbca4129602bbb25f4027f789db55e847991d4a960bf0fcfa3b6f611ce6197e668e9faae5fadeb30bb559cc6aaf1b65959c97e1a02fbf3e
|
|
7
|
+
data.tar.gz: d2b89d41bbccec7876ec190725ffdf962c4838d8d3717c8090c40458ba3c480e59606fb450870f26a67fca206d39d225b0dc173131bd11a9cb5d28f89caf4457
|
data/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "html-to-markdown-rb"
|
|
3
|
-
version = "2.5.
|
|
3
|
+
version = "2.5.3"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
authors = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -21,7 +21,7 @@ crate-type = ["cdylib", "rlib"]
|
|
|
21
21
|
default = []
|
|
22
22
|
|
|
23
23
|
[dependencies]
|
|
24
|
-
html-to-markdown-rs = { version = "2.5.
|
|
24
|
+
html-to-markdown-rs = { version = "2.5.3", features = ["inline-images"] }
|
|
25
25
|
magnus = { git = "https://github.com/matsadler/magnus", rev = "f6db11769efb517427bf7f121f9c32e18b059b38", features = ["rb-sys"] }
|
|
26
26
|
|
|
27
27
|
[dev-dependencies]
|
data/README.md
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Ruby bindings for the `html-to-markdown` Rust engine – the same core that powers the Python wheels, Node.js NAPI bindings, WebAssembly package, and CLI. The gem exposes fast HTML → Markdown conversion with identical rendering behaviour across every supported language.
|
|
4
4
|
|
|
5
|
-
[](https://crates.io/crates/html-to-markdown-rs)
|
|
6
|
+
[](https://www.npmjs.com/package/html-to-markdown-node)
|
|
7
|
+
[](https://pypi.org/project/html-to-markdown/)
|
|
8
|
+
[](https://rubygems.org/gems/html-to-markdown)
|
|
6
9
|
[](https://github.com/Goldziher/html-to-markdown/blob/main/LICENSE)
|
|
7
10
|
|
|
8
11
|
## Installation
|
|
@@ -109,7 +112,7 @@ You can also call the CLI binary directly for scripting:
|
|
|
109
112
|
|
|
110
113
|
```ruby
|
|
111
114
|
HtmlToMarkdown::CLIProxy.call(['--version'])
|
|
112
|
-
# => "html-to-markdown 2.5.
|
|
115
|
+
# => "html-to-markdown 2.5.3"
|
|
113
116
|
```
|
|
114
117
|
|
|
115
118
|
### Error Handling
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html-to-markdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.5.
|
|
4
|
+
version: 2.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Na'aman Hirschfeld
|
|
@@ -44,7 +44,6 @@ files:
|
|
|
44
44
|
- README.md
|
|
45
45
|
- exe/html-to-markdown
|
|
46
46
|
- extconf.rb
|
|
47
|
-
- lib/bin/html-to-markdown
|
|
48
47
|
- lib/html_to_markdown.rb
|
|
49
48
|
- lib/html_to_markdown/cli.rb
|
|
50
49
|
- lib/html_to_markdown/cli_proxy.rb
|
data/lib/bin/html-to-markdown
DELETED
|
Binary file
|