7 lines
237 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
/**
* Sanitises title, removing any unwanted characters that might break XML.
*
* This is a very basic funciton, not full parser.
*/
declare function sanitiseTitleAttribute(content: string): string;
export { sanitiseTitleAttribute };