Cosmetics: fix comment placement and import order

pull/224/head
Vytautas Šaltenis 2015-12-10 21:03:21 +02:00
parent bcd6dd8711
commit fc740701cf
2 changed files with 2 additions and 3 deletions

View File

@ -275,8 +275,8 @@ func link(p *parser, out *bytes.Buffer, data []byte, offset int) int {
i++
}
// inline style link
switch {
// inline style link
case i < len(data) && data[i] == '(':
// skip initial whitespace
i++

View File

@ -15,9 +15,8 @@ package blackfriday
import (
"regexp"
"testing"
"strings"
"testing"
)
func runMarkdownInline(input string, opts Options, htmlFlags int, params HtmlRendererParameters) string {