Skip to content

Commit 1f967da

Browse files
committed
remove debug print
1 parent 66874b3 commit 1f967da

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

extension/typographer.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,15 +218,13 @@ func (s *typographerParser) Parse(parent gast.Node, block text.Reader, pc parser
218218
}
219219
}
220220
if s.Substitutions[LeftSingleQuote] != nil && d.CanOpen && !d.CanClose {
221-
println("1")
222221
node := gast.NewString(s.Substitutions[LeftSingleQuote])
223222
node.SetCode(true)
224223
block.Advance(1)
225224
return node
226225
}
227226
if s.Substitutions[RightSingleQuote] != nil && d.CanClose && !d.CanOpen {
228227
node := gast.NewString(s.Substitutions[RightSingleQuote])
229-
println("2")
230228
node.SetCode(true)
231229
block.Advance(1)
232230
return node

0 commit comments

Comments
 (0)