Skip to content

Improve parsing rulesets

Compare
Choose a tag to compare
@No3371 No3371 released this 01 Sep 12:53
· 12 commits to master since this release
  1. x is no longer needed to replace with nothing (Previous rules won't break, x still works).
:: Any "SEARCH" becomes ""
"SEARCH"->""
  1. Now supports flexier formats. Readibility++

✅ These works:

"SEARCH"->"REPLACE"
"SEARCH"
->"REPLACE"
"SEARCH"
->
"REPLACE"
"SEARCH"->
"REPLACE"

❌ These do NOT work (Empty line inbetween not allowed; Nothing except new line is allowed right before and after the ->)

"SEARCH"

->
"REPLACE"
"SEARCH"->

"REPLACE"
"SEARCH"
->

"REPLACE"