a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/federation] Fix erroneous whitespace handling when encountering wafrn-style blockquote nodes

+1 -1
+1 -1
Iceshrimp.Backend/Core/Helpers/LibMfm/Parsing/HtmlParser.cs
··· 88 88 case "BLOCKQUOTE": 89 89 { 90 90 return node.TextContent.Length > 0 91 - ? $"\n> {string.Join("\n> ", node.TextContent.Split("\n"))}" 91 + ? $"\n> {string.Join("\n> ", node.TextContent.Trim().Split("\n"))}" 92 92 : null; 93 93 } 94 94