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

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