From a48229968acb918239e27a73608b9439216a3d77 Mon Sep 17 00:00:00 2001 From: ScottWager Date: Wed, 10 Mar 2021 03:35:08 +0000 Subject: [PATCH] Adding quote characters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All single and double quotation marks that chrome’s search feature recognises: Shown by searching here https://unicode-table.com/en/sets/quotation-marks/ --- index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.js b/index.js index df607cb..b774d89 100644 --- a/index.js +++ b/index.js @@ -4,6 +4,12 @@ var replacementList = [ { base: ' ', chars: "\u00A0", + }, { + base: "'", + chars: "\u2019\u2018", + }, { + base: '"', + chars: "\u201C\u201D\uFF02", }, { base: '0', chars: "\u07C0",