requirements: Upgrade markdown to 3.3.1.

Upstream has slightly changed the whitespace around stashes.  Take
this opportunity to clean up the extra blank lines we were outputting.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-10-18 19:49:17 -07:00
committed by Tim Abbott
parent 3e8e4b9cad
commit d81a93cdf3
10 changed files with 35 additions and 39 deletions

View File

@@ -51,7 +51,7 @@ export function wrap_code(code, lang) {
}
// Trim trailing \n until there's just one left
// This mirrors how pygments handles code input
return header + _.escape(code.replace(/^\n+|\n+$/g, "")) + "\n</code></pre></div>\n";
return header + _.escape(code.replace(/^\n+|\n+$/g, "")) + "\n</code></pre></div>";
}
function wrap_quote(text) {