Newer
Older
import { removeSpacesAndLinebreaks } from "../utils";
export const normalizePlainPart = (text: string): string => {
text = removeSpacesAndLinebreaks(text);
return removeQRCodes(text);
};
const removeQRCodes = (s: string): string => {
return s
.replace(/\[(image:)*qrcode.png]\s*<https:\/\/[\w./?=\-&]+>/g, "")
.replace(/<https:\/\/[\w./?=\-&]+>\s*\[(image: )*qrcode.png]/g, "");