Fix markdown link in title issue

pull/1/head
ClemDee 6 years ago
parent 9959f73b61
commit 56d985cb83

@ -45,6 +45,7 @@ define([
var toc = [];
var getTOC = function () {
console.log(toc);
var content = [h('h2', Messages.markdown_toc)];
toc.forEach(function (obj) {
// Only include level 2 headings
@ -84,7 +85,14 @@ define([
}
};
var stripTags = function (text) {
var div = document.createElement("div");
div.innerHTML = text;
return div.innerText;
}
renderer.heading = function (text, level) {
console.log(text, level);
var i = 0;
var safeText = text.toLowerCase().replace(/[^\w]+/g, '-');
var getId = function () {
@ -99,7 +107,7 @@ define([
toc.push({
level: level,
id: id,
title: text
title: stripTags(text)
});
return "<h" + level + " id=\"" + id + "\"><a href=\"#" + id + "\" class=\"anchor\"></a>" + text + "</h" + level + ">";
};

Loading…
Cancel
Save