diff --git a/html.go b/html.go index e0a6c69c..0be3ff9e 100644 --- a/html.go +++ b/html.go @@ -239,6 +239,10 @@ func (options *Html) Header(out *bytes.Buffer, text func() bool, level int, id s } func (options *Html) BlockHtml(out *bytes.Buffer, text []byte) { + options.BlockHTML(out, text) +} + +func (options *Html) BlockHTML(out *bytes.Buffer, text []byte) { if options.flags&HTML_SKIP_HTML != 0 { return } @@ -575,6 +579,10 @@ func (options *Html) Link(out *bytes.Buffer, link []byte, title []byte, content } func (options *Html) RawHtmlTag(out *bytes.Buffer, text []byte) { + options.RawHTMLTag(out, text) +} + +func (options *Html) RawHTMLTag(out *bytes.Buffer, text []byte) { if options.flags&HTML_SKIP_HTML != 0 { return }