aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/entity/entity.odin
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 16:34:18 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 16:34:18 +0200
commit288b45f50cd6691f19066a775b5e065cf89dc2bd (patch)
treebb2ac72e56082eae9116405ff5f61ce442ae2f56 /core/encoding/entity/entity.odin
parent248b0fe9e155e1a00a04cb7b1fc687601d401d7c (diff)
package lines for encoding
Diffstat (limited to 'core/encoding/entity/entity.odin')
-rw-r--r--core/encoding/entity/entity.odin18
1 files changed, 9 insertions, 9 deletions
diff --git a/core/encoding/entity/entity.odin b/core/encoding/entity/entity.odin
index cb8fa8611..45841d125 100644
--- a/core/encoding/entity/entity.odin
+++ b/core/encoding/entity/entity.odin
@@ -1,13 +1,5 @@
/*
- Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
-
- List of contributors:
- Jeroen van Rijn: Initial implementation.
-*/
-
-/*
- A unicode entity encoder/decoder.
+ package entity implements a unicode `&entity;` encoder and decoder.
This code has several procedures to map unicode runes to/from different textual encodings.
- SGML/XML/HTML entity
@@ -21,6 +13,14 @@
*/
package encoding_unicode_entity
+/*
+ Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
+ Made available under Odin's BSD-3 license.
+
+ List of contributors:
+ Jeroen van Rijn: Initial implementation.
+*/
+
import "core:unicode/utf8"
import "core:unicode"
import "core:strings"