html2markdown icon indicating copy to clipboard operation
html2markdown copied to clipboard

Converts HTML to Markdown

Results 6 html2markdown issues
Sort by recently updated
recently updated
newest added

Hello, The [GitHub Security Lab team](https://securitylab.github.com/) has found a potential vulnerability in your project. Please create a [Security Advisory](https://docs.github.com/en/free-pro-team@latest/github/managing-security-vulnerabilities/creating-a-security-advisory) and invite me in to further disclose and discuss the vulnerability...

I modified the directory of project and provided some primary files compressed.

```javascript var html2markdown = require('html2markdown'); var fs = require('fs'); var http = require('http'); http.createServer(function(req, res){ fs.readFile('index.html',function (err, data){ if (err) throw new Error(err); res.writeHead(200, {'Content-Type': 'text/html','Content-Length':data.length}); res.write(html2markdown(data)); res.end(); }); }).listen(8000);...

If I pass a html from a url , it got an error: ``` Parse Error: Aggregation Pipeline — MongoDB Manual 2.4.8 ```

Previously, neighboring like tags would cause leaking markdown text. For example, in "abcdefg", if a user selected "abc" and made it bold, then selected the "defg" and made it bold,...