html-to-markdown 2.5.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e0e6194a6f1f081dd93f13abb5e299118f8e92bb5a7f706d6dc3359439dd5ae
4
- data.tar.gz: 7146575639b67ad477a74640d5cd8d19219bb58a60c0d1311595fd46ee9be2ad
3
+ metadata.gz: 4c670930402ff8c5400d263d0e17e42248437968c6cec4dfe15020395723261c
4
+ data.tar.gz: 5f8a56c6acd7ac3e63bf9ec9e24aaa4dc097e7caa539f9ec4f6a866c35aa67cb
5
5
  SHA512:
6
- metadata.gz: 0d55454f4a640146ddbe4ed0173f140901a9bfc6c1333827a51c5f404aed8b38d7c90bd6910e15aef0dd2da25f91fbfe6c08b1b5e914e6fc2d466caca148d1f2
7
- data.tar.gz: 88fbedd30ddacdbac50be232944ff331edf344129d91c9d0799d999443833f0726a963881e6e608892923a115d7e3b01cf041443f46363059ab2e68a9e6cde2f
6
+ metadata.gz: 61672702d8e7e6554fbca4129602bbb25f4027f789db55e847991d4a960bf0fcfa3b6f611ce6197e668e9faae5fadeb30bb559cc6aaf1b65959c97e1a02fbf3e
7
+ data.tar.gz: d2b89d41bbccec7876ec190725ffdf962c4838d8d3717c8090c40458ba3c480e59606fb450870f26a67fca206d39d225b0dc173131bd11a9cb5d28f89caf4457
data/Cargo.toml CHANGED
@@ -1,14 +1,14 @@
1
1
  [package]
2
2
  name = "html-to-markdown-rb"
3
- version.workspace = true
4
- edition.workspace = true
5
- authors.workspace = true
6
- license.workspace = true
7
- repository.workspace = true
8
- homepage.workspace = true
9
- documentation.workspace = true
3
+ version = "2.5.3"
4
+ edition = "2021"
5
+ authors = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>"]
6
+ license = "MIT"
7
+ repository = "https://github.com/Goldziher/html-to-markdown"
8
+ homepage = "https://github.com/Goldziher/html-to-markdown"
9
+ documentation = "https://docs.rs/html-to-markdown-rs"
10
10
  readme = "README.md"
11
- rust-version.workspace = true
11
+ rust-version = "1.80"
12
12
  description = "Ruby bindings (Magnus) for html-to-markdown - high-performance HTML to Markdown converter"
13
13
  keywords = ["html", "markdown", "ruby", "magnus", "bindings"]
14
14
  categories = ["api-bindings"]
@@ -21,7 +21,7 @@ crate-type = ["cdylib", "rlib"]
21
21
  default = []
22
22
 
23
23
  [dependencies]
24
- html-to-markdown-rs = { workspace = true, features = ["inline-images"] }
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
- [![RubyGems](https://badge.fury.io/rb/html-to-markdown.svg)](https://rubygems.org/gems/html-to-markdown)
5
+ [![Crates.io](https://img.shields.io/crates/v/html-to-markdown-rs.svg)](https://crates.io/crates/html-to-markdown-rs)
6
+ [![npm version](https://badge.fury.io/js/html-to-markdown-node.svg)](https://www.npmjs.com/package/html-to-markdown-node)
7
+ [![PyPI version](https://badge.fury.io/py/html-to-markdown.svg)](https://pypi.org/project/html-to-markdown/)
8
+ [![Gem Version](https://badge.fury.io/rb/html-to-markdown.svg)](https://rubygems.org/gems/html-to-markdown)
6
9
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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.1"
115
+ # => "html-to-markdown 2.5.3"
113
116
  ```
114
117
 
115
118
  ### Error Handling
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HtmlToMarkdown
4
- VERSION = '2.5.1'
4
+ VERSION = '2.5.3'
5
5
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: html-to-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.1
4
+ version: 2.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Na'aman Hirschfeld
8
+ autorequire:
8
9
  bindir: exe
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2025-10-29 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: rb_sys
@@ -43,7 +44,6 @@ files:
43
44
  - README.md
44
45
  - exe/html-to-markdown
45
46
  - extconf.rb
46
- - lib/bin/html-to-markdown
47
47
  - lib/html_to_markdown.rb
48
48
  - lib/html_to_markdown/cli.rb
49
49
  - lib/html_to_markdown/cli_proxy.rb
@@ -62,6 +62,7 @@ metadata:
62
62
  bug_tracker_uri: https://github.com/Goldziher/html-to-markdown/issues
63
63
  changelog_uri: https://github.com/Goldziher/html-to-markdown/releases
64
64
  documentation_uri: https://github.com/Goldziher/html-to-markdown/blob/main/README.md
65
+ post_install_message:
65
66
  rdoc_options: []
66
67
  require_paths:
67
68
  - lib
@@ -76,7 +77,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
77
  - !ruby/object:Gem::Version
77
78
  version: '0'
78
79
  requirements: []
79
- rubygems_version: 3.7.2
80
+ rubygems_version: 3.5.22
81
+ signing_key:
80
82
  specification_version: 4
81
83
  summary: Ruby bindings for the html-to-markdown Rust library
82
84
  test_files: []
Binary file