Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Commit ba8db86

Browse files
author
Matthew Williams
committed
Remove debug print statements
1 parent d1bbe2e commit ba8db86

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

claat/parser/md/parse.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,6 @@ func table(ds *docState) types.Node {
561561
var rows [][]*types.GridCell
562562
for _, tr := range findChildAtoms(ds.cur, atom.Tr) {
563563
ds.push(tr)
564-
fmt.Println(tr)
565564
r := tableRow(ds)
566565
ds.pop()
567566
fmt.Println(r)
@@ -580,7 +579,7 @@ func tableRow(ds *docState) []*types.GridCell {
580579
if firstChild == nil {
581580
firstChild = findAtom(ds.cur, atom.Th)
582581
}
583-
582+
584583
for td := firstChild; td != nil; td = td.NextSibling {
585584
if td.DataAtom != atom.Td && td.DataAtom != atom.Th {
586585
continue

0 commit comments

Comments
 (0)