make sure the headings in TOC contain text only, https://github.com/zadam/trilium-web-clipper/issues/42

This commit is contained in:
zadam 2022-07-14 23:39:16 +02:00
parent 52812c27a1
commit 9114b1befb

View File

@ -143,7 +143,9 @@ export default class TocWidget extends CollapsibleWidget {
//
// Create the list item and set up the click callback
//
const $li = $('<li style="cursor:pointer">' + m[2] + '</li>');
const headingText = $("<div>").html(m[2]).text();
const $li = $('<li style="cursor:pointer">').text(headingText);
// XXX Do this with CSS? How to inject CSS in doRender?
$li.hover(function () {
$(this).css("font-weight", "bold");