diff options
Diffstat (limited to 'src/html/entity.nim')
-rw-r--r-- | src/html/entity.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html/entity.nim b/src/html/entity.nim index 72c5c452..775ea94f 100644 --- a/src/html/entity.nim +++ b/src/html/entity.nim @@ -1,8 +1,8 @@ import json -import ../utils/radixtree +import utils/radixtree -const entity = staticRead"../../res/entity.json" +const entity = staticRead"res/entity.json" proc genEntityMap(data: seq[tuple[a: string, b: string]]): RadixNode[string] = result = newRadixTree[string]() for pair in data: |