diff --git a/webapp/titanembeds/static/css/embed.css b/webapp/titanembeds/static/css/embed.css index b3ef3fe..66bb24b 100644 --- a/webapp/titanembeds/static/css/embed.css +++ b/webapp/titanembeds/static/css/embed.css @@ -904,6 +904,14 @@ p.mentioned span.chatmessage { margin-right: 6px; } +#chatcontent .blockquote { + display: inline-block; + border-left: 5px; + padding-left: 10px; + border-left-color: rgba(255, 255, 255, 0.3); + border-left-style: solid; +} + .wdt-emoji-popup { position: fixed; bottom: 5%; diff --git a/webapp/titanembeds/static/js/embed.js b/webapp/titanembeds/static/js/embed.js index 3ade493..e4b94a3 100644 --- a/webapp/titanembeds/static/js/embed.js +++ b/webapp/titanembeds/static/js/embed.js @@ -1509,6 +1509,7 @@ text = text.replace(/~~(.*?)~~/g, "$1"); text = text.replace(/\`\`\`([^]+?)\`\`\`/g, "$1"); text = text.replace(/\`(.*?)\`/g, "$1"); + text = text.replace(/^> (.*?)$/gm, "$1"); if (links) { for (var i = 0; i < links.length; i++) { text = text.replace("$LINK"+i+"$", links[i]);