Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
yuin committed Apr 15, 2020
1 parent 66874b3 commit 1f967da
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions extension/typographer.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,15 +218,13 @@ func (s *typographerParser) Parse(parent gast.Node, block text.Reader, pc parser
}
}
if s.Substitutions[LeftSingleQuote] != nil && d.CanOpen && !d.CanClose {
println("1")
node := gast.NewString(s.Substitutions[LeftSingleQuote])
node.SetCode(true)
block.Advance(1)
return node
}
if s.Substitutions[RightSingleQuote] != nil && d.CanClose && !d.CanOpen {
node := gast.NewString(s.Substitutions[RightSingleQuote])
println("2")
node.SetCode(true)
block.Advance(1)
return node
Expand Down

0 comments on commit 1f967da

Please sign in to comment.