diff --git a/inc/config.php b/inc/config.php index 8326dc18..c5842b88 100644 --- a/inc/config.php +++ b/inc/config.php @@ -657,7 +657,7 @@ $config['markup'][] = array("/'''(.+?)'''/", "\$1"); $config['markup'][] = array("/''(.+?)''/", "\$1"); $config['markup'][] = array("/\*\*(.+?)\*\*/", "\$1"); - $config['markup'][] = array("/^[ |\t]*==(.+?)==[ |\t]*$/m", "\$1"); + $config['markup'][] = array("/==(.+?)==/", "\$1"); // Code markup. This should be set to a regular expression, using tags you want to use. Examples: // "/\[code\](.*?)\[\/code\]/is" diff --git a/inc/instance-config.php b/inc/instance-config.php index e46d3620..eca5bb01 100644 --- a/inc/instance-config.php +++ b/inc/instance-config.php @@ -327,3 +327,13 @@ $config['embedding'][0] = array( '/^https?:\/\/(\w+\.)?(?:youtube\.com\/watch\?v=|youtu\.be\/)([a-zA-Z0-9\-_]{10,11})(&.+)?$/i', $config['youtube_js_html']); $config['additional_javascript'][] = 'js/youtube.js'; + +/* + * ==================== + * Markup + * ==================== + */ + +$config['markup'][] = array("/^\s*<.*$/m", '$0'); +$config['markup'][] = array("/__(.+?)__/", "\$1"); +$config['markup'][] = array("/~~(.+?)~~/", "\$1"); diff --git a/stylesheets/dark_red.css b/stylesheets/dark_red.css index 71c62eed..915f5600 100644 --- a/stylesheets/dark_red.css +++ b/stylesheets/dark_red.css @@ -6,7 +6,7 @@ @import url("/stylesheets/dark.css"); span.quote { - color:#D96262; + /* color:#D96262; */ } div.blotter, h1, h2, header div.subtitle, div.title, a:link:hover, a:visited:hover p.intro a.post_no:hover, diff --git a/stylesheets/gentoochan.css b/stylesheets/gentoochan.css index ae7ef2f3..93111b3f 100644 --- a/stylesheets/gentoochan.css +++ b/stylesheets/gentoochan.css @@ -68,3 +68,8 @@ div.boardlist a { table.modlog tr th { background: #EA8; } + +#quick-reply table { + background: #0E0E0E url(data:image/gif;base64,R0lGODlhGAAMAKEEAOXl5ebm5vDw8PHx8SH+EUNyZWF0ZWQgd2l0aCBHSU1QACwAAAAAGAAMAAACRpQiY6cLa146MyY1EJQKjG81lNGRUPOIkgMJHtquBgIO7xwvpbrpduUSuXq8ntEC0bBEylYitdDAdM1ViaobkgKgZwyDLAAAOw==) repeat 0 0 !important; +} + diff --git a/stylesheets/style.css b/stylesheets/style.css index 570decf6..b88b919f 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -1953,4 +1953,16 @@ div.mix { footer { margin-bottom: 50px; -} \ No newline at end of file +} + +span.underline { + text-decoration: underline; +} + +span.strikethrough { + text-decoration: line-through; +} + +span.orangeQuote { + color: #FF8C00; +}