Skip to content

Commit

Permalink
Fix markdown parser (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
mczachurski authored Apr 14, 2024
1 parent 410453a commit b5a03d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/VernissageServer/Extensions/String+HTML.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extension String {
.convertUrlsIntoHtml()
}

let converted = lines.joined(separator: "\n")
let converted = lines.joined(separator: "<br />")
return converted.convertMarkdownToHtml()
}

Expand Down

0 comments on commit b5a03d0

Please sign in to comment.