all repos — grayfriday @ d4c83fb4daf75cf9c60ab1267955617919f61558

blackfriday fork with a few changes

Fix previous commit

Backslash was not removed from output.
neclepsio neclepsio@gmail.com
Wed, 22 Apr 2015 14:04:08 +0200
commit

d4c83fb4daf75cf9c60ab1267955617919f61558

parent

2824a549c31db6cb9ad696d9de0a49f1d04e34bb

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M inline.goinline.go

@@ -174,6 +174,9 @@ if p.flags&EXTENSION_HARD_LINE_BREAK == 0 && !precededByTwoSpaces && !precededByBackslash {

return 0 } + if precededByBackslash && eol > 0 { + out.Truncate(eol - 1) + } p.r.LineBreak(out) return 1 }