summaryrefslogtreecommitdiff
path: root/cook/parse.sld
blob: 1dcfb353707f1d64ea08b237fe07aaf542c275a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(define-library (cook parse)
  (import (scheme base)
          (srfi 1)
          (srfi 9)
          (srfi 69)
          (chibi)
          (chibi char-set ascii)
          (chibi char-set)
          (chibi parse)
          (chibi regexp)
          (chibi string))
  (export amount?
          amount-quantity
          amount-unit
          ingredient?
          ingredient-name
          ingredient-amount
          timer?
          timer-name
          timer-amount
          cookware?
          cookware-name
          cookware-amount
          comment?
          comment-text
          step?
          step-elements
          recipe?
          recipe-metadata
          recipe-body
          parse-cook)
  (include "parse.scm"))