Fixed the bash quotes module.

This commit is contained in:
Storm Dragon 2020-08-10 07:36:22 -04:00
parent 4217b45207
commit f888885ab4
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@ quote="${quote#*class=\"qt\">}"
quote="${quote//&lt;/<}"
quote="${quote//&gt;/>}"
quote="${quote%%<p class*}"
quote="$(echo "$quote" | html2text)"
quote="$(echo "$quote" | pandoc -t plain)"
msg "$2" "$(echo "$quote" | tr -s '[:space:]' ' ')"
exit 0