Merge pull request #63 from ericchiang/json_nl

print newline after content when using the JSON output option
pull/43/merge
Eric Chiang 8 years ago
commit e76307d03d

@ -323,7 +323,7 @@ func (j JSONDisplayer) Display(nodes []*html.Node) {
if err != nil {
panic("Could not jsonify nodes")
}
fmt.Printf("%s", data)
fmt.Printf("%s\n", data)
}
// Print the number of features returned

Loading…
Cancel
Save