Releases: JohannesKaufmann/html-to-markdown
Releases · JohannesKaufmann/html-to-markdown
v1.4.1
Bump golang.org/x/net from 0.9.0 to 0.14.0 (#74) Bumps [golang.org/x/net](https://github.com/golang/net) from 0.9.0 to 0.14.0. - [Commits](https://github.com/golang/net/compare/v0.9.0...v0.14.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
v1.4.0 - control the escaping
You can now configure the escaping using the EscapeMode
option 🎉
opt = &md.Options{
EscapeMode: "basic", // default
}
See the README for a detailed description of what escaping is & why it's sometimes needed.
v1.3.7
Update dependencies
v1.3.6
- Update dependencies
v1.3.5 fix html tags in code blocks
- fix html tags in code blocks
- render kbd, samp and tt tags as inline code
Full Changelog: v1.3.4...v1.3.5
v1.3.4 fix list and youtube
What's Changed
- fix: don't set prefix for li element outside list by @wcalandro in #45
- fix: youtube plugin by @vivook in #48
New Contributors
- @wcalandro made their first contribution in #45
- @vivook made their first contribution in #48
Full Changelog: v1.3.3...v1.3.4
v1.3.3
- feat: remove highlight span tags from code tags
- fix: newlines in bold/italic
- fix: don't render divider inside heading
v1.3.2
fix trimming of em in lists
v1.3.1
enable link brackets escaper
v1.3.0 - nested lists
Various nested lists are now supported 🎉