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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dbdd98e748fec609d1b033648e4e78aef576a320a127daaa83202fff9a662f51
4
- data.tar.gz: 6a9ea3fa2b0eaaabc6d9618369da96899ea5295585b9354bbf9348915b04bac6
3
+ metadata.gz: 4c670930402ff8c5400d263d0e17e42248437968c6cec4dfe15020395723261c
4
+ data.tar.gz: 5f8a56c6acd7ac3e63bf9ec9e24aaa4dc097e7caa539f9ec4f6a866c35aa67cb
5
5
  SHA512:
6
- metadata.gz: 141b341e6b3729cb804864a1af4e7a7411dd46efcd37645a401169bc57385ae623726a7b136049e5a78010695f1750e56635e670887319bdfb22a62493d7b7e1
7
- data.tar.gz: 3d9b17aa842772c81ca3f212983d614b4318be7635adaa8581005aca3909829d332975275d40dc33d79aac2bd7c3d72d8c05ca24e3d7ecf44f0b1c2e07518758
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.2"
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.2", 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.2"
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.2'
4
+ VERSION = '2.5.3'
5
5
  end
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.2
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
Binary file