html2md icon indicating copy to clipboard operation
html2md copied to clipboard

A ruby gem from converting basic html to markdown

Results 5 html2md issues
Sort by recently updated
recently updated
newest added

Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.5.2 to 1.13.9. Release notes Sourced from nokogiri's releases. 1.13.9 / 2022-10-18 Security [CRuby] Vendored libxml2 is updated to address CVE-2022-2309, CVE-2022-40304, and CVE-2022-40303. See GHSA-2qc6-mcvw-92cw for...

dependencies

Bumps [json](https://github.com/flori/json) from 1.6.5 to 2.3.1. Changelog Sourced from json's changelog. 2020-06-30 (2.3.1) Spelling and grammar fixes for comments. Pull request #191 by Josh Kline. Enhance generic JSON and #generate...

dependencies

Bumps [rake](https://github.com/ruby/rake) from 0.9.2.2 to 12.3.3. Changelog *Sourced from [rake's changelog](https://github.com/ruby/rake/blob/master/History.rdoc).* > === 12.3.3 > > ==== Bug fixes > > * Use the application's name in error message if...

dependencies

I'm sure there are others, but: ``` ruby html2md = Html2Md.new("hi there foo") #=> # html2md.parse #=> "**hi**there foo\n\n" ``` Output should be `**hi** **there** foo`.

Your Gemfile contains dependencies, but these don't exist in your gemspec file. `add_runtime_dependency` and `add_development_dependency` should be used in the gemspec, then Gemfile can contain the line: ``` gemspec ```...