| # This is the first part of the example dictionary. | |
| # Lines starting with '#' and empty lines are ignored. | |
| # Adds "blah" (w/o quotes) to the dictionary. | |
| kw1="blah" | |
| # Use \\ for backslash and \" for quotes. | |
| kw2="\"ac\\dc\"" | |
| # Use \xAB for hex values | |
| kw3="\xF7\xF8" | |
| # the name of the keyword followed by '=' may be omitted: | |
| "foo\x0Abar" | |
| "ab\"" |