mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-27 21:24:12 -04:00
Simplify regexes
This commit is contained in:
parent
42d4d64695
commit
2c0a63352c
1 changed files with 2 additions and 4 deletions
|
@ -221,12 +221,10 @@ namespace DiscordChatExporter.Services
|
|||
content = HtmlEncode(content);
|
||||
|
||||
// Pre multiline (```text```)
|
||||
content = Regex.Replace(content, "```+(?:[^`]*?\\n)?([^`]+)\\n?```+",
|
||||
m => "<div class=\"pre\">" + m.Groups[1].Value + "</div>");
|
||||
content = Regex.Replace(content, "```+(?:[^`]*?\\n)?([^`]+)\\n?```+", "<div class=\"pre\">$1</div>");
|
||||
|
||||
// Pre inline (`text`)
|
||||
content = Regex.Replace(content, "`([^`]+)`",
|
||||
m => "<span class=\"pre\">" + m.Groups[1].Value + "</span>");
|
||||
content = Regex.Replace(content, "`([^`]+)`", "<span class=\"pre\">$1</span>");
|
||||
|
||||
// URL links
|
||||
content = Regex.Replace(content, "((https?|ftp)://[^\\s/$.?#].[^\\s]*)",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue