From 251aedab2053a2b57ddec9b5602662e0ca16c0ac Mon Sep 17 00:00:00 2001 From: Simon Pieters Date: Tue, 14 Mar 2017 09:36:12 +0100 Subject: [PATCH] Stability script: strip backticks in markdown_adjust It doesn't work to escape backticks inside backticks, so instead just remove them. --- check_stability.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_stability.py b/check_stability.py index 8398dbe0a3fb70..ba0d88812d339b 100644 --- a/check_stability.py +++ b/check_stability.py @@ -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