Mousewheel paste

This commit is contained in:
James Cracknell 2015-03-08 22:30:15 -06:00
parent 127eb439d7
commit 41cc43208e
1 changed files with 0 additions and 4 deletions

View File

@ -234,10 +234,6 @@ func PostProcessMarkdown(rawHtml []byte, urlPrefix string) []byte {
var buf bytes.Buffer
tokenizer := html.NewTokenizer(bytes.NewReader(rawHtml))
for html.ErrorToken != tokenizer.Next() {
// A parse error has occurred, so return the original input unmodified
return rawHtml
token := tokenizer.Token()
switch token.Type {
case html.TextToken: