View Source Html2MdEx (html2md_ex v0.1.1)

HTML2Md_Ex is a Rustler NIF that converts HTML to Markdown.

Link to this section Summary

Functions

Convert HTML to Markdown.

Link to this section Functions

@spec parse_html(binary()) :: binary()

Convert HTML to Markdown.

examples

Examples

iex> Html2MdEx.parse_html("<h1>Hello, world!</h1>")
"Hello, world!

=============="