nowopen/places.peg

25 lines
764 B
Plaintext
Raw Normal View History

2019-01-05 14:17:57 -08:00
file <- {| (place / ws? comment? %nl)* |} {.+}?
place <- {|
{:name: {word (ws word)*} :}
2019-01-05 14:36:53 -08:00
ws? ("(" ws? {:tags: {| {tag} (ws? "," ws? {tag})* ws? |} :} ")")? ws? ":"
2019-01-05 14:17:57 -08:00
({:times: {|
2019-01-05 14:36:53 -08:00
((ws? comment? %nl)+ (%tab / " "^+2) ws? {| days ws? ("closed" / {:open: time :} "-" {:close: time :}) |})+
2019-01-05 14:17:57 -08:00
|} :})
|}
comment <- "#" [^%nl]*
days <-
({:from: {word} :} "-" {:to: {word} :} ":")
/({:from: {word} :} ":")
/({:from:''->'sun':} {:to:''->'sat':})
time <- {|
{:hour: {[0-9]+} :} (":" {:minute: {[0-9]+} :})? {:ampm: { "am" / "pm"} :}
/ ("noon" {:hour: {~''->'12'~} :} {:ampm: {~''->'pm'~} :})
/ ("midnight" {:hour: {~''->'12'~} :} {:ampm: {~''->'am'~} :})
2019-01-05 14:17:57 -08:00
|}
2019-01-05 14:36:53 -08:00
tag <- word (" "+ word)*
word <- [^%nl%tab (),:#0-9-]+
ws <- [ %tab]+