mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-15 00:03:38 -07:00
parent
6706ff95f1
commit
6a7000cbc9
|
|
@ -249,9 +249,6 @@ namespace DiscordChatExporter.Services
|
||||||
// Pre inline (`text`)
|
// Pre inline (`text`)
|
||||||
content = Regex.Replace(content, "`([^`]+)`", "<span class=\"pre\">$1</span>");
|
content = Regex.Replace(content, "`([^`]+)`", "<span class=\"pre\">$1</span>");
|
||||||
|
|
||||||
// URL links
|
|
||||||
content = Regex.Replace(content, "((https?|ftp)://[^\\s/$.?#].[^\\s]*)", "<a href=\"$1\">$1</a>");
|
|
||||||
|
|
||||||
// Bold (**text**)
|
// Bold (**text**)
|
||||||
content = Regex.Replace(content, "\\*\\*([^\\*]*?)\\*\\*", "<b>$1</b>");
|
content = Regex.Replace(content, "\\*\\*([^\\*]*?)\\*\\*", "<b>$1</b>");
|
||||||
|
|
||||||
|
|
@ -270,6 +267,9 @@ namespace DiscordChatExporter.Services
|
||||||
// New lines
|
// New lines
|
||||||
content = content.Replace("\n", "<br />");
|
content = content.Replace("\n", "<br />");
|
||||||
|
|
||||||
|
// URL links
|
||||||
|
content = Regex.Replace(content, "((https?|ftp)://[^\\s/$.?#].[^\\s<>]*)", "<a href=\"$1\">$1</a>");
|
||||||
|
|
||||||
// Meta mentions (@everyone)
|
// Meta mentions (@everyone)
|
||||||
content = content.Replace("@everyone", "<span class=\"mention\">@everyone</span>");
|
content = content.Replace("@everyone", "<span class=\"mention\">@everyone</span>");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue