changed: replace --- with hr in color mode

This commit is contained in:
quenousimporte 2023-11-30 12:28:35 +01:00
parent 58b0b90021
commit 8bba9af403
1 changed files with 6 additions and 0 deletions

View File

@ -2167,6 +2167,12 @@ function rawline2html(line, index, options)
line = "<span class='color-comment'>" + line + "</span>";
}
// hl
if (line == "---")
{
line = "<hr>";
}
// autocomplete snippets
if (index == currentline())
{