spaces in filenames are OK
This commit is contained in:
parent
f18bafc543
commit
e10d8dbe1d
1 changed files with 1 additions and 0 deletions
|
@ -421,6 +421,7 @@ const sequencialPromises = async (iterable, callback = false) => {
|
||||||
const toCssClass = (text, prefix = '') => {
|
const toCssClass = (text, prefix = '') => {
|
||||||
return prefix + 'vt_' + text
|
return prefix + 'vt_' + text
|
||||||
.replaceAll('.','-dot-')
|
.replaceAll('.','-dot-')
|
||||||
|
.replaceAll(' ','_')
|
||||||
.replaceAll('#','-hash-')
|
.replaceAll('#','-hash-')
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue