Skip to content
Snippets Groups Projects

Draft: Support UTF-8

Open Jakob Moser requested to merge feat/support-utf8 into master
2 files
+ 16
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 12
0
@@ -59,6 +59,18 @@ sudo docker container run xle $(cat data.json | base64 -w0)
The idea to implement it that way came from [Christian Heusel](https://christian.heusel.eu/), thank you very much!
</details>
## :abcd: A word about encoding
By default, this container lets XLE use its default encoding, whatever that is (not UTF-8). If you want to use UTF-8, you have to add the following line to your grammar file in the `CONFIG` section
```
CHARACTERENCODING utf-8.
```
**and** execute `set-character-encoding stdio utf-8` every time after starting XLE.
`xle-docker` will automatically use `utf-8` as character encoding for standard input if it detects the character encoding configuration line (more precisely, a line matching `^\s*CHARACTERENCODING\s+utf-8\s*\..*$` anywhere in the file).
## :page_with_curl: About
Here, a more detailed explanation of the relevant files is given. The used sources are marked with :books:.
Loading