mdroff: Remove <br/> from output

This commit is contained in:
Ethan P 2021-08-21 16:03:05 -07:00
parent ef0356a2d8
commit d8532bb35a
No known key found for this signature in database
GPG Key ID: 6963FD04F6CF35EA

View File

@ -117,6 +117,11 @@ mdroff:emit:table_row() {
mdroff:emit:text() {
local text="$1"
text="${text//<br>/ }"
text="${text//<br\/>/ }"
text="${text//<br \/>/ }"
printf "%s" "$text"
}