Skip to content

Latest commit

History

24 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Html2md is a Go library for converting html to markdown.

Installation

If you have gopm installed,

gopm get github.com/lunny/html2md

Or

go get github.com/lunny/html2md

Usage

  • Html2md already has some built-in html tag rules. For basic use:
md:=html2md.Convert(html)
  • If you want to add your own rules, you can
html2md.AddRule(&html2md.Rule{
patterns: []string{"hr"},
tp: Void,
replacement: func(innerHTMLstring, attrs []string) string {
return"\n\n* * *\n"
},
})

or

html2md.AddConvert(func(contentstring) string {
returnstrings.ToLower(content)
})

Docs

LICENSE

BSD License http://creativecommons.org/licenses/BSD/

About

convert html to markdown, fork of github.com/lunny/html2md

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages