JohannesKaufmann / html-to-markdown

⚙️ Convert HTML to Markdown. Even works with entire websites and can be extended through rules.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missed space between two links

cheggaaa opened this issue · comments

HTML: <p><a href="http://first.com">first</a> <a href="http://second.com">second</a></p>
Result: [first](http://first.com)[second](http://second.com)
Expected: [first](http://first.com) [second](http://second.com)

@cheggaaa thanks for submitting this issue 🙏. You are right, I added a test case and fixed it.

You can update the library by running

go get -u github.com/JohannesKaufmann/html-to-markdown

Feel free to open new issues if you encounter any other bugs...