diff options
-rw-r--r-- | formatter/formatter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/formatter/formatter.go b/formatter/formatter.go index 5eae8b7..7d44891 100644 --- a/formatter/formatter.go +++ b/formatter/formatter.go @@ -46,7 +46,7 @@ func PrintHtml(ast parser.AstNode) { for _, a := range notClasses { fmt.Printf(" %s", a.Key) if a.Value == "" { - break + continue } fmt.Print("=\"") for _, r := range a.Value { |