Skip to content

Commit

Permalink
🚧 Add new pattern.
Browse files Browse the repository at this point in the history
  • Loading branch information
tolerious committed Nov 22, 2024
1 parent 51e88d2 commit 712a2ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Stylish Reader",
"description": "Help you learn English better and easier.",
"developer": { "name": "Toly Feng", "url": "https://stylishreader.com" },
"version": "0.0.9",
"version": "0.0.10",
"icons": {
"48": "icons/stylish-reader-48.png"
},
Expand Down
1 change: 1 addition & 0 deletions src/plugins/general/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,7 @@ function convertStringToLowerCaseAndRemoveSpecialCharacter(s) {
.replaceAll('"', "")
.replaceAll("(", "")
.replaceAll(")", "")
.replaceAll("!", "")
.replaceAll(":", "");
}

Expand Down
3 changes: 2 additions & 1 deletion src/webPage/translationFloatingPanel/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ function convertStringToLowerCaseAndRemoveSpecialCharacter(s: string) {
.replace(/"/g, '')
.replace(/\(/g, '')
.replace(/\)/g, '')
.replace(/:/g, '');
.replace(/:/g, '')
.replace(/!/g, '');
}
</script>

Expand Down

0 comments on commit 712a2ee

Please sign in to comment.