mirror of
https://github.com/yuin/goldmark
synced 2025-03-04 23:04:52 +00:00
remove debug print
This commit is contained in:
parent
66874b397f
commit
1f967da77c
1 changed files with 0 additions and 2 deletions
|
|
@ -218,7 +218,6 @@ 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)
|
||||
|
|
@ -226,7 +225,6 @@ func (s *typographerParser) Parse(parent gast.Node, block text.Reader, pc parser
|
|||
}
|
||||
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue