Skip to content

Commit eef6a64

Browse files
authored
Merge pull request #543 from googlecodelabs/table
Fix accidental escaped new line character.
2 parents e80a7a8 + aeee33e commit eef6a64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

claat/render/html.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ func (hw *htmlWriter) itemsList(n *types.ItemsListNode) {
308308

309309
func (hw *htmlWriter) grid(n *types.GridNode) {
310310
if hw.format == "devsite" {
311-
hw.writeString(`<table class="vertical-rules">\n`)
311+
hw.writeString("<table class=\"vertical-rules\">\n")
312312
} else {
313313
hw.writeString("<table>\n")
314314
}

0 commit comments

Comments
 (0)