Mercurial > clickerconvert
comparison src/replacements.ini @ 76:1e6e7699f0b8
Add replacements.ini to configure text replacements
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 05 Oct 2016 14:23:23 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
75:92139cc60121 | 76:1e6e7699f0b8 |
---|---|
1 ; Replacements for EduExportConvert | |
2 ; | |
3 ; This file describes replacements done by EduExportConvert | |
4 ; | |
5 ; The Syntax is: | |
6 ; | |
7 ; <Regular Expression>=<Replacement> | |
8 ; | |
9 ; Any input that matches the Expression will be replaced | |
10 ; by the right hand side of the equation. | |
11 ; | |
12 ; The Regular Expression syntax is perl compatible. | |
13 ; Please refer to: | |
14 ; http://perldoc.perl.org/perlretut.html | |
15 ; For documentation about the syntax. | |
16 ; | |
17 ; Groups can be referenced through \1 \2 etc. see examples below. | |
18 ; | |
19 ; Lines starting with ; are ignored | |
20 ; | |
21 ; This file should be UTF-8 encoded. | |
22 | |
23 ; Excel artifiacts ? | |
24 #NAME\?= | |
25 ; Remove latex escape characters. | |
26 \$\$(.*?)\$\$=" \1 " | |
27 ; Remove image escape characters. | |
28 ##(.*?)##=" \1 " | |
29 ; Image qualifiers | |
30 \\hfill= | |
31 \\filbreak= |