101 | | Erlaube regexes? Beispiel `s/\n<pb/<pb/`, eventuell geschrieben als `[\n<pb] [<pb]` |
| 101 | Erlaube regexes? Beispiel `s/\n<pb/<pb/`, eventuell geschrieben als `[\n<pb] = [<pb]` |
| 102 | |
| 103 | Going though all keys of %replacements for all text lines is computationally expensive, but I see no alternative here, unlike e.g. in step 2.07. Still good enough? Or does it make sense to group e.g. |
| 104 | {{{ |
| 105 | {us} = us |
| 106 | {nu} = nu |
| 107 | {ni} = ni |
| 108 | }}} |
| 109 | as |
| 110 | {{{ |
| 111 | {(us|nu|ni)} = $1 |
| 112 | }}} |
| 113 | If yes: in the text or in the script? |
| 114 | |
| 115 | Mit der Schreibweise von oben wäre das `[{(us|nu|ni)}] = [$1]` |
| 116 | |