strikethrough
This commit is contained in:
parent
e32e12798e
commit
0c622642d3
|
@ -326,3 +326,4 @@ $config['additional_javascript'][] = 'js/youtube.js';
|
|||
|
||||
$config['markup'][] = array("/^\s*<.*$/m", '<span class="orangeQuote">$0</span>');
|
||||
$config['markup'][] = array("/__(.+?)__/", "<span class=\"underline\">\$1</span>");
|
||||
$config['markup'][] = array("/~~(.+?)~~/", "<span class=\"strikethrough\">\$1</span>");
|
||||
|
|
|
@ -1959,6 +1959,10 @@ span.underline {
|
|||
text-decoration: underline;
|
||||
}
|
||||
|
||||
span.strikethrough {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
span.orangeQuote {
|
||||
color: #FF8C00;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue