html-to-markdown 2.7.2 → 2.8.1
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/.bundle/config +2 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +1 -1
- data/README.md +4 -1
- data/Steepfile +9 -9
- data/ext/html-to-markdown-rb/native/Cargo.toml +2 -2
- data/lib/html_to_markdown/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68e272c8c222285ff7d60ea8e662f0ebb08fb55db6914dd5549dfa1c672d89ef
|
|
4
|
+
data.tar.gz: a08bbdd634069592dda8ad35bd14d13d5ce07b73938bf5286fdc065411b237c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdc3fd64e9bfdbc0f8979e2b37f275364f964e21c46970d33806e8d0c3f574663079dce9ec7df6a6a55344747204608d0e1be1cafddae03293ffa575d4fae53b
|
|
7
|
+
data.tar.gz: e53c42a0d6cb783d27063a3f72d03117ed716dcea0b638e4db10b6c084f7287a295601f2f1d920d8608203251bc926cd2a31cc6c50c334fc53aec5b7602bc342
|
data/.bundle/config
ADDED
data/Gemfile
CHANGED
|
@@ -8,8 +8,8 @@ gemspec
|
|
|
8
8
|
|
|
9
9
|
group :development, :test do
|
|
10
10
|
gem 'rake-compiler'
|
|
11
|
-
gem 'rb_sys' # provides build tooling when developing locally
|
|
12
11
|
gem 'rbs', require: false
|
|
12
|
+
gem 'rb_sys' # provides build tooling when developing locally
|
|
13
13
|
gem 'rspec'
|
|
14
14
|
gem 'rubocop', require: false
|
|
15
15
|
gem 'rubocop-rspec', require: false
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -2,12 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Blazing-fast HTML → Markdown conversion for Ruby, powered by the same Rust engine used by our Python, Node.js, WebAssembly, and PHP packages. Ship identical Markdown across every runtime while enjoying native extension performance.
|
|
4
4
|
|
|
5
|
-
[](https://crates.io/crates/html-to-markdown)
|
|
6
6
|
[](https://www.npmjs.com/package/html-to-markdown-node)
|
|
7
7
|
[](https://www.npmjs.com/package/html-to-markdown-wasm)
|
|
8
8
|
[](https://pypi.org/project/html-to-markdown/)
|
|
9
9
|
[](https://packagist.org/packages/goldziher/html-to-markdown)
|
|
10
10
|
[](https://rubygems.org/gems/html-to-markdown)
|
|
11
|
+
[](https://www.nuget.org/packages/HtmlToMarkdown/)
|
|
12
|
+
[](https://central.sonatype.com/artifact/io.github.goldziher/html-to-markdown)
|
|
13
|
+
[](https://pkg.go.dev/github.com/Goldziher/html-to-markdown/packages/go/htmltomarkdown)
|
|
11
14
|
[](https://github.com/Goldziher/html-to-markdown/blob/main/LICENSE)
|
|
12
15
|
|
|
13
16
|
## Features
|
data/Steepfile
CHANGED
|
@@ -3,24 +3,24 @@
|
|
|
3
3
|
# Steepfile for type checking html-to-markdown Ruby gem
|
|
4
4
|
|
|
5
5
|
target :lib do
|
|
6
|
-
signature
|
|
6
|
+
signature 'sig'
|
|
7
7
|
|
|
8
|
-
check
|
|
8
|
+
check 'lib'
|
|
9
9
|
|
|
10
10
|
# Configure libraries
|
|
11
|
-
library
|
|
12
|
-
library
|
|
11
|
+
library 'pathname'
|
|
12
|
+
library 'open3'
|
|
13
13
|
|
|
14
14
|
# Ignore vendor directory
|
|
15
|
-
ignore
|
|
15
|
+
ignore 'vendor'
|
|
16
16
|
|
|
17
17
|
# Ignore spec directory
|
|
18
|
-
ignore
|
|
18
|
+
ignore 'spec'
|
|
19
19
|
|
|
20
20
|
# Ignore bin directory
|
|
21
|
-
ignore
|
|
21
|
+
ignore 'bin'
|
|
22
22
|
|
|
23
23
|
# Ignore internal implementation modules (not public API)
|
|
24
|
-
ignore
|
|
25
|
-
ignore
|
|
24
|
+
ignore 'lib/html_to_markdown/cli.rb'
|
|
25
|
+
ignore 'lib/html_to_markdown/cli_proxy.rb'
|
|
26
26
|
end
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "html-to-markdown-rb"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.8.1"
|
|
4
4
|
edition = "2024"
|
|
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.
|
|
24
|
+
html-to-markdown-rs = { version = "2.8.1", features = ["inline-images"] }
|
|
25
25
|
magnus = { git = "https://github.com/matsadler/magnus", rev = "f6db11769efb517427bf7f121f9c32e18b059b38", features = ["rb-sys"] }
|
|
26
26
|
|
|
27
27
|
[dev-dependencies]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html-to-markdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Na'aman Hirschfeld
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rb_sys
|
|
@@ -42,6 +42,7 @@ extensions:
|
|
|
42
42
|
extra_rdoc_files:
|
|
43
43
|
- README.md
|
|
44
44
|
files:
|
|
45
|
+
- ".bundle/config"
|
|
45
46
|
- ".rubocop.yml"
|
|
46
47
|
- Gemfile
|
|
47
48
|
- Gemfile.lock
|