remove shys from pagetitle

This commit is contained in:
2023-12-30 12:47:06 +01:00
parent 9fc8571a18
commit 59ee898de3

View File

@ -2,6 +2,6 @@
import {load} from 'cheerio';
export function stripHtmlTags(input) {
const $ = load(input)
const $ = load(input.replace(/­/g, ''));
return $.text();
}