Skip to content

Commit

Permalink
Stability script: strip backticks in markdown_adjust
Browse files Browse the repository at this point in the history
It doesn't work to escape backticks inside backticks, so instead
just remove them.
  • Loading branch information
zcorpan authored and jgraham committed Mar 14, 2017
1 parent 5de931e commit 251aeda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_stability.py
Expand Up @@ -584,7 +584,7 @@ def markdown_adjust(s):
s = s.replace('\t', u'\\t')
s = s.replace('\n', u'\\n')
s = s.replace('\r', u'\\r')
s = s.replace('`', u'\\`')
s = s.replace('`', u'')
return s


Expand Down

0 comments on commit 251aeda

Please sign in to comment.