feat: Ports all existing articles and images.

This commit is contained in:
2025-02-20 12:14:09 -05:00
parent e0fb6129ad
commit 67dc3540d6
151 changed files with 10413 additions and 1631 deletions

View File

@@ -27,4 +27,11 @@ extension String {
return prefix(length - end.count).split(separator: " ").dropLast().joined(separator: " ") + end
}
var removeBreaks: String {
replacingOccurrences(of: "<br>", with: "")
.replacingOccurrences(of: "<br />", with: "")
.trimmingCharacters(in: .whitespacesAndNewlines)
}
}