Skip to content
Snippets Groups Projects
Commit ce79e22b authored by echicken's avatar echicken
Browse files

Headings might have whitespace after them for whatever reason.

parent 18e807c3
No related branches found
No related tags found
No related merge requests found
......@@ -317,7 +317,7 @@ Markdown.prototype.render_line_console = function (line) {
}
// Heading
match = ret.match(/^(==+)([^=]+)==+$/m);
match = ret.match(/^(==+)([^=]+)==+\s*$/m);
if (match !== null) {
ret = ret.replace(match[0], '');
ret += '\1+';
......@@ -429,7 +429,7 @@ Markdown.prototype.render_line_html = function (line) {
}
// Heading
match = ret.match(/^(==+)([^=]+)==+$/m);
match = ret.match(/^(==+)([^=]+)==+\s*$/m);
if (match !== null) {
ret = ret.replace(match[0], '');
var lvl = 6 - Math.min(match[1].split(' ')[0].length, 5);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment