From 48d1f9d9cc4926f3465929e318a3a002ef9c8a35 Mon Sep 17 00:00:00 2001 From: Russ Ross Date: Tue, 1 Oct 2013 13:55:34 -0600 Subject: [PATCH] fix smartypants to pass single backticks through, issue #38 --- smartypants.go | 1 + 1 file changed, 1 insertion(+) diff --git a/smartypants.go b/smartypants.go index 797de91..d6f4ad9 100644 --- a/smartypants.go +++ b/smartypants.go @@ -250,6 +250,7 @@ func smartBacktick(out *bytes.Buffer, smrt *smartypantsData, previousChar byte, } } + out.WriteByte(text[0]) return 0 }