vault backup: 2025-11-10 16:55:49

This commit is contained in:
2025-11-10 16:55:49 -05:00
parent b904d4bd88
commit d677bff906
51 changed files with 1721 additions and 4040 deletions
+58 -1
View File
@@ -287,7 +287,64 @@
"enabled": true
}
],
"customRegexes": [],
"customRegexes": [
{
"label": "figure dash to double hyphens",
"find": "\\u2012",
"replace": "--",
"flags": "gm",
"enabled": true
},
{
"label": "en dash to double hyphens",
"find": "\\u2013",
"replace": "--",
"flags": "gm",
"enabled": true
},
{
"label": "em dash to triple hyphens",
"find": "\\u2014",
"replace": "---",
"flags": "gm",
"enabled": true
},
{
"label": "horizontal bar to triple hyphens",
"find": "\\u2015",
"replace": "---",
"flags": "gm",
"enabled": true
},
{
"label": "smart single quote to straight single quote",
"find": "[\\u2018\\u2019]",
"replace": "'",
"flags": "gm",
"enabled": true
},
{
"label": "smart double quote to straight double quote",
"find": "[\\u201C\\u201D]",
"replace": "\"",
"flags": "gm",
"enabled": true
},
{
"label": "bullet character to asterisk",
"find": "[\\u2022]",
"replace": "*",
"flags": "gm",
"enabled": true
},
{
"label": "fraction slash to forward slash",
"find": "\\u2044",
"replace": "/",
"flags": "gm",
"enabled": true
}
],
"commonStyles": {
"aliasArrayStyle": "multi-line",
"tagArrayStyle": "multi-line",