1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-07-15 14:54:19 -04:00

Mousewheel paste

This commit is contained in:
James Cracknell 2015-03-08 22:30:15 -06:00
parent 127eb439d7
commit 41cc43208e

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: