mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-01 06:22:44 -08:00
33 lines
1.5 KiB
JavaScript
33 lines
1.5 KiB
JavaScript
/*
|
|
* Copyright (C) 2024-2025 Yomitan Authors
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import {basicTextProcessorOptions} from '../text-processors.js';
|
|
|
|
const optionalDiacritics = ['\u0303', '\u0304', '\u0307', '\u0308', '\u0323', '\u032E', '\u0330', '\u0331', '\u0730', '\u0731', '\u0732', '\u0733', '\u0734', '\u0735', '\u0736', '\u0737', '\u0738', '\u0739', '\u073A', '\u073B', '\u073C', '\u073D', '\u073E', '\u073F', '\u0740', '\u0741', '\u0742', '\u0743', '\u0744', '\u0745', '\u0746', '\u0747', '\u0748', '\u0749', '\u074A'];
|
|
|
|
const diacriticsRegex = new RegExp(`[${optionalDiacritics.join('')}]`, 'g');
|
|
|
|
/** @type {import('language').TextProcessor<boolean>} */
|
|
export const removeSyriacScriptDiacritics = {
|
|
name: 'Remove diacritics',
|
|
description: 'ܟܵܬܹܒ݂ ⬅️ ܟܬܒ',
|
|
options: basicTextProcessorOptions,
|
|
process: (text, setting) => {
|
|
return setting ? text.replace(diacriticsRegex, '') : text;
|
|
},
|
|
};
|