blob: 20de41accfbda519cecab0b4f49705bbdd291fd7 (
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
33
34
35
36
37
|
(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)
(cook unicode))
(export amount?
amount-quantity
amount-unit
ingredient?
ingredient-name
ingredient-amount
timer?
timer-name
timer-amount
cookware?
cookware-name
cookware-amount
comment?
comment-text
note?
note-text
section?
section-name
step?
step-elements
recipe?
recipe-metadata
recipe-body
parse-cook)
(include "parse.scm"))
|