Update README

This commit is contained in:
Niklas Fasching 2018-12-20 16:39:05 +01:00
parent 854f8e181a
commit e8b90ab9d4
2 changed files with 8 additions and 11 deletions

View file

@ -43,10 +43,6 @@ func isListToken(t token) bool {
return t.kind == "unorderedList" || t.kind == "orderedList"
}
func stopIndentBelow(t token, minIndent int) bool {
return t.lvl < minIndent && !(t.kind == "text" && t.content == "")
}
func listKind(t token) (string, string) {
kind := ""
switch bullet := t.matches[2]; {