// // Blackfriday Markdown Processor // Available at http://github.com/russross/blackfriday // // Copyright © 2011 Russ Ross . // Distributed under the Simplified BSD License. // See README.md for details. // // // // HTML rendering backend // // package blackfriday import ( "bytes" "fmt" "html" "regexp" "strconv" "strings" ) type HtmlFlags int // Html renderer configuration options. const ( HtmlFlagsNone HtmlFlags = 0 SkipHTML HtmlFlags = 1 << iota // Skip preformatted HTML blocks SkipStyle // Skip embedded