html-to-markdown 2.29.0-arm64-darwin
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 +7 -0
- data/.bundle/config +2 -0
- data/.gitignore +3 -0
- data/.rubocop.yml +29 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +223 -0
- data/README.md +345 -0
- data/Rakefile +32 -0
- data/Steepfile +26 -0
- data/bin/benchmark.rb +232 -0
- data/exe/html-to-markdown +6 -0
- data/html-to-markdown-rb.gemspec +99 -0
- data/lib/html_to_markdown/cli.rb +21 -0
- data/lib/html_to_markdown/cli_proxy.rb +74 -0
- data/lib/html_to_markdown/version.rb +5 -0
- data/lib/html_to_markdown.rb +211 -0
- data/lib/html_to_markdown_rb.bundle +0 -0
- data/sig/html_to_markdown/cli.rbs +24 -0
- data/sig/html_to_markdown/cli_proxy.rbs +48 -0
- data/sig/html_to_markdown.rbs +498 -0
- data/sig/open3.rbs +12 -0
- data/spec/cli_proxy_spec.rb +42 -0
- data/spec/convert_spec.rb +77 -0
- data/spec/convert_with_tables_spec.rb +194 -0
- data/spec/metadata_extraction_spec.rb +437 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/visitor_issue_187_spec.rb +605 -0
- data/spec/visitor_spec.rb +1149 -0
- metadata +80 -0
metadata
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: html-to-markdown
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.29.0
|
|
5
|
+
platform: arm64-darwin
|
|
6
|
+
authors:
|
|
7
|
+
- Na'aman Hirschfeld
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-03-22 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: |-
|
|
14
|
+
html-to-markdown is a native Ruby extension built on the shared Rust engine that powers the html-to-markdown project.
|
|
15
|
+
It delivers identical HTML-to-Markdown output across languages, exposes inline image extraction, and ships with a CLI for automation workflows.
|
|
16
|
+
email:
|
|
17
|
+
- nhirschfeld@gmail.com
|
|
18
|
+
executables:
|
|
19
|
+
- html-to-markdown
|
|
20
|
+
extensions: []
|
|
21
|
+
extra_rdoc_files:
|
|
22
|
+
- README.md
|
|
23
|
+
files:
|
|
24
|
+
- ".bundle/config"
|
|
25
|
+
- ".gitignore"
|
|
26
|
+
- ".rubocop.yml"
|
|
27
|
+
- Gemfile
|
|
28
|
+
- Gemfile.lock
|
|
29
|
+
- README.md
|
|
30
|
+
- Rakefile
|
|
31
|
+
- Steepfile
|
|
32
|
+
- bin/benchmark.rb
|
|
33
|
+
- exe/html-to-markdown
|
|
34
|
+
- html-to-markdown-rb.gemspec
|
|
35
|
+
- lib/html_to_markdown.rb
|
|
36
|
+
- lib/html_to_markdown/cli.rb
|
|
37
|
+
- lib/html_to_markdown/cli_proxy.rb
|
|
38
|
+
- lib/html_to_markdown/version.rb
|
|
39
|
+
- lib/html_to_markdown_rb.bundle
|
|
40
|
+
- sig/html_to_markdown.rbs
|
|
41
|
+
- sig/html_to_markdown/cli.rbs
|
|
42
|
+
- sig/html_to_markdown/cli_proxy.rbs
|
|
43
|
+
- sig/open3.rbs
|
|
44
|
+
- spec/cli_proxy_spec.rb
|
|
45
|
+
- spec/convert_spec.rb
|
|
46
|
+
- spec/convert_with_tables_spec.rb
|
|
47
|
+
- spec/metadata_extraction_spec.rb
|
|
48
|
+
- spec/spec_helper.rb
|
|
49
|
+
- spec/visitor_issue_187_spec.rb
|
|
50
|
+
- spec/visitor_spec.rb
|
|
51
|
+
homepage: https://github.com/kreuzberg-dev/html-to-markdown
|
|
52
|
+
licenses:
|
|
53
|
+
- MIT
|
|
54
|
+
metadata:
|
|
55
|
+
rubygems_mfa_required: 'true'
|
|
56
|
+
homepage_uri: https://github.com/kreuzberg-dev/html-to-markdown
|
|
57
|
+
source_code_uri: https://github.com/kreuzberg-dev/html-to-markdown
|
|
58
|
+
bug_tracker_uri: https://github.com/kreuzberg-dev/html-to-markdown/issues
|
|
59
|
+
changelog_uri: https://github.com/kreuzberg-dev/html-to-markdown/releases
|
|
60
|
+
documentation_uri: https://github.com/kreuzberg-dev/html-to-markdown/blob/main/packages/ruby/README.md
|
|
61
|
+
post_install_message:
|
|
62
|
+
rdoc_options: []
|
|
63
|
+
require_paths:
|
|
64
|
+
- lib
|
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '3.2'
|
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
requirements: []
|
|
76
|
+
rubygems_version: 3.5.22
|
|
77
|
+
signing_key:
|
|
78
|
+
specification_version: 4
|
|
79
|
+
summary: Blazing-fast HTML to Markdown conversion for Ruby, powered by Rust.
|
|
80
|
+
test_files: []
|