html-to-markdown 2.7.2 → 2.8.0

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: 00b01de61bb11f04e93d91e1b76d39eba48fc92f86eade0d4161e26cc057d145
4
- data.tar.gz: fd4eb68b80988e643bcd5ff26a8090a2f5857d622583e9018d98ff5294c331bb
3
+ metadata.gz: 8cf4d0bca9d902a8b61c1eeaf6b6c8393f7fad579122a04dcede2309876ef965
4
+ data.tar.gz: 30d0b76a088f2e5fd35f918e953f346c003d883ad40b1de2b3caa86d422c1550
5
5
  SHA512:
6
- metadata.gz: 25c7819d959377c33d53dc8c2e98a83901f9eed243861ab8f46920cca6461d669cd7aa0069b409f6d9926c5d1cf3c4902a2c03b046bc8ab149efc876f8d22903
7
- data.tar.gz: e9af104c04a4ec024c39f7de01a57b4981a43163a9b0e0855e78c897f663a00c78ab0e4bcb0676188e8224407c20257b58a1d1371b005621167147cea905ebcf
6
+ metadata.gz: f8d3fc37aca64542630046da218a3e46d7b9f19744af777eacad9b3a3bfeb33c9b190c35f4862bc09868ee657cd019e5f285efdf6b38519f67c28aca3f4dab79
7
+ data.tar.gz: f09e97203bb0712dc677b10b3701d091638abeb218e71b328b03d145010d44ae154981d6b9d00eb253ad8a4af54f1e4c86d628e95ebc86380d916761c116cda8
data/.bundle/config ADDED
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_PATH: "vendor/bundle"
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- html-to-markdown (2.7.2)
4
+ html-to-markdown (2.8.0)
5
5
  rb_sys (>= 0.9, < 1.0)
6
6
 
7
7
  GEM
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
- [![Crates.io](https://img.shields.io/crates/v/html-to-markdown-rs.svg)](https://crates.io/crates/html-to-markdown-rs)
5
+ [![Crates.io](https://img.shields.io/crates/v/html-to-markdown.svg)](https://crates.io/crates/html-to-markdown)
6
6
  [![npm (node)](https://badge.fury.io/js/html-to-markdown-node.svg)](https://www.npmjs.com/package/html-to-markdown-node)
7
7
  [![npm (wasm)](https://badge.fury.io/js/html-to-markdown-wasm.svg)](https://www.npmjs.com/package/html-to-markdown-wasm)
8
8
  [![PyPI](https://badge.fury.io/py/html-to-markdown.svg)](https://pypi.org/project/html-to-markdown/)
9
9
  [![Packagist](https://img.shields.io/packagist/v/goldziher/html-to-markdown.svg)](https://packagist.org/packages/goldziher/html-to-markdown)
10
10
  [![RubyGems](https://badge.fury.io/rb/html-to-markdown.svg)](https://rubygems.org/gems/html-to-markdown)
11
+ [![NuGet](https://img.shields.io/nuget/v/HtmlToMarkdown.svg)](https://www.nuget.org/packages/HtmlToMarkdown/)
12
+ [![Maven Central](https://img.shields.io/maven-central/v/io.github.goldziher/html-to-markdown.svg)](https://central.sonatype.com/artifact/io.github.goldziher/html-to-markdown)
13
+ [![Go Reference](https://pkg.go.dev/badge/github.com/Goldziher/html-to-markdown/packages/go/htmltomarkdown.svg)](https://pkg.go.dev/github.com/Goldziher/html-to-markdown/packages/go/htmltomarkdown)
11
14
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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 "sig"
6
+ signature 'sig'
7
7
 
8
- check "lib"
8
+ check 'lib'
9
9
 
10
10
  # Configure libraries
11
- library "pathname"
12
- library "open3"
11
+ library 'pathname'
12
+ library 'open3'
13
13
 
14
14
  # Ignore vendor directory
15
- ignore "vendor"
15
+ ignore 'vendor'
16
16
 
17
17
  # Ignore spec directory
18
- ignore "spec"
18
+ ignore 'spec'
19
19
 
20
20
  # Ignore bin directory
21
- ignore "bin"
21
+ ignore 'bin'
22
22
 
23
23
  # Ignore internal implementation modules (not public API)
24
- ignore "lib/html_to_markdown/cli.rb"
25
- ignore "lib/html_to_markdown/cli_proxy.rb"
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.7.2"
3
+ version = "2.8.0"
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.7.1", features = ["inline-images"] }
24
+ html-to-markdown-rs = { version = "2.8.0", features = ["inline-images"] }
25
25
  magnus = { git = "https://github.com/matsadler/magnus", rev = "f6db11769efb517427bf7f121f9c32e18b059b38", features = ["rb-sys"] }
26
26
 
27
27
  [dev-dependencies]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HtmlToMarkdown
4
- VERSION = '2.7.2'
4
+ VERSION = '2.8.0'
5
5
  end
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.7.2
4
+ version: 2.8.0
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-14 00:00:00.000000000 Z
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