It's todo list for adding word exception feature. Reference post is #14 .
Todo: Code method to find word for exception and replace it with any symbol.
Example: from
let val = `this is test exceptThis.`
with regex replace, to
let exceptWordStr = `this is test $#$#.` // <any symbol like $#, %^>
Todos
- Fork
word-ex branch.
- Go to line 57 at
./src/utils.js.
- Add variables
- arr for adding words to except
- regex for marking exception
- result string
Todo: Check value has symbols to replace
Todos
- Console value at line 222 in
./src/utils.js.
- Check if the value has symbols.
- Example:
this is test $#$#.
- These symbols will replaced with except words.
Todo: Replace symbols to except words
It should be after line 222. The result example would be like from,
result = `das ist test $#$#.` // <any symbol like $#, %^>
to
result = `das ist test exceptThis.`
Todos
It's todo list for adding word exception feature. Reference post is #14 .
Todo: Code method to find word for exception and replace it with any symbol.
Example: from
with regex replace, to
Todos
word-exbranch../src/utils.js.Todo: Check
valuehas symbols to replaceTodos
./src/utils.js.this is test $#$#.Todo: Replace symbols to except words
It should be after line 222. The result example would be like from,
to
Todos