html-to-markdown 2.8.1 → 2.8.2

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: 68e272c8c222285ff7d60ea8e662f0ebb08fb55db6914dd5549dfa1c672d89ef
4
- data.tar.gz: a08bbdd634069592dda8ad35bd14d13d5ce07b73938bf5286fdc065411b237c7
3
+ metadata.gz: 57383368bef96568135249ab8a354587d96cf41e46bb9e4b6390816e26a47460
4
+ data.tar.gz: 12cf94f2e56b5898e7812b99673084629883db1116ac84998f4c63ed1d23602b
5
5
  SHA512:
6
- metadata.gz: fdc3fd64e9bfdbc0f8979e2b37f275364f964e21c46970d33806e8d0c3f574663079dce9ec7df6a6a55344747204608d0e1be1cafddae03293ffa575d4fae53b
7
- data.tar.gz: e53c42a0d6cb783d27063a3f72d03117ed716dcea0b638e4db10b6c084f7287a295601f2f1d920d8608203251bc926cd2a31cc6c50c334fc53aec5b7602bc342
6
+ metadata.gz: 8e2c39653bda8ca92606d9ba4e00d0bbf8cfb798947cab14574e48c4c9ef7e17247f8546b201bea3ecab73ca9134d076b255d01e7321bc0f9b4d7089449e1c0b
7
+ data.tar.gz: a65f9ee71e5efc9d67c5b982db7d318c7a065ab55c6cb867e5e43cf14f6ba39149045266edf29ee9fcf93d2340736ef590437c179120da8e478d2648557e40ab
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- html-to-markdown (2.8.1)
4
+ html-to-markdown (2.8.2)
5
5
  rb_sys (>= 0.9, < 1.0)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -8,10 +8,12 @@ Blazing-fast HTML → Markdown conversion for Ruby, powered by the same Rust eng
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
+ [![Hex.pm](https://img.shields.io/hexpm/v/html_to_markdown.svg)](https://hex.pm/packages/html_to_markdown)
11
12
  [![NuGet](https://img.shields.io/nuget/v/HtmlToMarkdown.svg)](https://www.nuget.org/packages/HtmlToMarkdown/)
12
13
  [![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
14
  [![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)
14
15
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/Goldziher/html-to-markdown/blob/main/LICENSE)
16
+ [![Discord](https://img.shields.io/badge/Discord-Join%20our%20community-7289da)](https://discord.gg/pXxagNK2zN)
15
17
 
16
18
  ## Features
17
19
 
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "html-to-markdown-rb"
3
- version = "2.8.1"
3
+ version = "2.8.2"
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.8.1", features = ["inline-images"] }
24
+ html-to-markdown-rs = { version = "2.8.2", 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.8.1'
4
+ VERSION = '2.8.2'
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.8.1
4
+ version: 2.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Na'aman Hirschfeld