function sanitiseTitleAttribute(content) {
return content.replace(/[<>&]+/g, "");
}
export { sanitiseTitleAttribute };