Fix multiline pre appearing as inline pre

pull/4/head
Oleksii Holub 7 years ago
parent 2155cd649c
commit 343dafb5b7

@ -75,11 +75,11 @@ namespace DiscordChatExporter.Services
// Preformatted multiline // Preformatted multiline
content = Regex.Replace(content, "```([^`]*?)```", content = Regex.Replace(content, "```([^`]*?)```",
e => "<span class=\"pre\">" + e.Groups[1].Value + "</span>"); m => "<div class=\"pre\">" + m.Groups[1].Value + "</div>");
// Preformatted // Preformatted inline
content = Regex.Replace(content, "`([^`]*?)`", content = Regex.Replace(content, "`([^`]*?)`",
e => "<span class=\"pre\">" + e.Groups[1].Value + "</span>"); m => "<span class=\"pre\">" + m.Groups[1].Value + "</span>");
// Bold // Bold
content = Regex.Replace(content, "\\*\\*([^\\*]*?)\\*\\*", "<b>$1</b>"); content = Regex.Replace(content, "\\*\\*([^\\*]*?)\\*\\*", "<b>$1</b>");

@ -23,7 +23,7 @@
text-decoration: underline; text-decoration: underline;
} }
span.pre { div.pre, span.pre {
font-family: Consolas, Courier New, Courier, Monospace; font-family: Consolas, Courier New, Courier, Monospace;
padding-right: 2px; padding-right: 2px;

Loading…
Cancel
Save