From bcc2bd6f040543d1efefbde019dcf18e6ddc040d Mon Sep 17 00:00:00 2001 From: 5ouma <101255979+5ouma@users.noreply.github.com> Date: Wed, 8 May 2024 18:28:10 +0900 Subject: [PATCH] style(xml): Remove unused replacement Since XML library doesn't replace entities. --- src/libs/convert.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/convert.ts b/src/libs/convert.ts index f672c93..0e4928f 100644 --- a/src/libs/convert.ts +++ b/src/libs/convert.ts @@ -25,5 +25,5 @@ export function convertToOPML(list: List): string { return ` ${stringify({ opml: { "@version": "2.0", body: [body] } })} -`.replaceAll("amp;", ""); +`; }