aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data/format.lux
blob: a67936e66913ddbd81ef9ceb27588dc7f7eddc27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(.using
 [library
  [lux (.except)
   ["$" documentation (.only documentation:)]
   [data
    [text (.only \n)
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list]]]]]
 ["[0]" /
  ["[1][0]" binary]
  ["[1][0]" json]
  ["[1][0]" tar]
  ["[1][0]" xml]])

(.def .public documentation
  (.List $.Module)
  (list.together
   (list /binary.documentation
         /json.documentation
         /tar.documentation
         /xml.documentation
         )))