about summary refs log tree commit diff stats
path: root/src/xhr/formdata.nim
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-08-15 18:35:19 +0200
committerbptato <nincsnevem662@gmail.com>2023-08-15 18:35:19 +0200
commitaea27f52335d203f8acfed3f2113ab0e61cdafd5 (patch)
treeab3ff3cf553e2a548c590bd25408945612686daa /src/xhr/formdata.nim
parent542800305a01587a1cc7402ee429da6417fc1bb8 (diff)
downloadchawan-aea27f52335d203f8acfed3f2113ab0e61cdafd5.tar.gz
Move HTML parsing into Chame
Operation "modularize Chawan somewhat" part 2
Diffstat (limited to 'src/xhr/formdata.nim')
-rw-r--r--src/xhr/formdata.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xhr/formdata.nim b/src/xhr/formdata.nim
index ad7a0529..e69b9bf7 100644
--- a/src/xhr/formdata.nim
+++ b/src/xhr/formdata.nim
@@ -1,11 +1,12 @@
 import html/dom
-import html/tags
 import js/exception
 import js/javascript
 import types/blob
 import types/formdata
 import utils/twtstr
 
+import chame/tags
+
 proc constructEntryList*(form: HTMLFormElement, submitter: Element = nil,
     encoding: string = ""): Option[seq[FormDataEntry]]