From 1f967da77c0e17c8c9c06887e2c1d05fb60ca127 Mon Sep 17 00:00:00 2001 From: yuin Date: Thu, 16 Apr 2020 00:29:11 +0900 Subject: [PATCH] remove debug print --- extension/typographer.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/extension/typographer.go b/extension/typographer.go index 348c74e..c3b9751 100644 --- a/extension/typographer.go +++ b/extension/typographer.go @@ -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