]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/html5/html5.factor
json: merging reader/writer for simplicity
[factor.git] / extra / html5 / html5.factor
index 236cf4001fb5f64a149bdc66da7d8e01ea84734b..839a2c97575852c5c1a477d1c1f0a2c053c487df 100644 (file)
@@ -1,10 +1,11 @@
 ! Copyright (C) 2020 Doug Coleman.
 ! See https://factorcode.org/license.txt for BSD license.
+
 USING: accessors arrays assocs combinators
-combinators.short-circuit io io.encodings.utf8 io.files
-json.reader kernel math math.order memoize modern.slices
-prettyprint sequences sequences.extras strings suffix-arrays
-words ;
+combinators.short-circuit io io.encodings.utf8 io.files json
+kernel math math.order memoize modern.slices prettyprint
+sequences sequences.extras strings suffix-arrays words ;
+
 IN: html5
 
 : 1sbuf ( ch -- sbuf ) [ SBUF" " clone ] dip over push ; inline