strikethrough

This commit is contained in:
nonmakina 2021-01-04 20:23:32 -06:00
parent e32e12798e
commit 0c622642d3
2 changed files with 5 additions and 0 deletions

View File

@ -326,3 +326,4 @@ $config['additional_javascript'][] = 'js/youtube.js';
$config['markup'][] = array("/^\s*&lt;.*$/m", '<span class="orangeQuote">$0</span>');
$config['markup'][] = array("/__(.+?)__/", "<span class=\"underline\">\$1</span>");
$config['markup'][] = array("/~~(.+?)~~/", "<span class=\"strikethrough\">\$1</span>");

View File

@ -1959,6 +1959,10 @@ span.underline {
text-decoration: underline;
}
span.strikethrough {
text-decoration: line-through;
}
span.orangeQuote {
color: #FF8C00;
}