1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-19 08:28:09 +00:00
quot/app/syntax/quot.grammar

15 lines
344 B
Text
Raw Normal View History

2022-09-16 21:30:29 +09:00
@top Document { heading line* }
2022-09-17 16:38:41 +09:00
heading { Heading? "\n" }
line { Indent* ((AutoLink | word) space*)* "\n" }
2022-09-16 21:30:29 +09:00
@tokens {
space { $[ \t] }
2022-09-17 16:38:41 +09:00
letter { ![ \t\n] }
word { letter+ }
Heading { (letter | space)+ }
2022-09-16 21:30:29 +09:00
Indent { space }
2022-09-17 16:38:41 +09:00
AutoLink { ("http" | "https") "://" word }
@precedence { AutoLink, word }
2022-09-16 21:30:29 +09:00
}