File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1313### 🐞 Fixes
1414
1515- [ #874 ] ( https://github.com/estruyf/vscode-front-matter/issues/874 ) : Fix media snippet markup insertion to article content's
16+ - [ #875 ] ( https://github.com/estruyf/vscode-front-matter/issues/875 ) : Clean up the exclamation marks from the file name when creating new content
1617
1718## [ 10.5.0] - 2024-10-21 - [ Release notes] ( https://beta.frontmatter.codes/updates/v10.5.0 )
1819
Original file line number Diff line number Diff line change 1- const illegalRe = / [ / ? < > \\ : * | " ] / g;
1+ const illegalRe = / [ / ? < > \\ : * | " ! ] / g;
22// eslint-disable-next-line no-control-regex
3- const controlRe = / [ \x00 - \x1F \x80 - \x9F ] / g;
3+ const controlRe = / [ \x00 - \x1f \x80 - \x9f ] / g;
44const reservedRe = / ^ \. + $ / ;
55const windowsReservedRe = / ^ ( c o n | p r n | a u x | n u l | c o m [ 0 - 9 ] | l p t [ 0 - 9 ] ) ( \. .* ) ? $ / i;
66const windowsTrailingRe = / [ . ] + $ / ;
You can’t perform that action at this time.
0 commit comments