diff options
author | bptato <nincsnevem662@gmail.com> | 2023-08-15 18:35:19 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-08-15 18:35:19 +0200 |
commit | aea27f52335d203f8acfed3f2113ab0e61cdafd5 (patch) | |
tree | ab3ff3cf553e2a548c590bd25408945612686daa /src/xhr/formdata.nim | |
parent | 542800305a01587a1cc7402ee429da6417fc1bb8 (diff) | |
download | chawan-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.nim | 3 |
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]] |