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

14 lines
308 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 17:04:18 +09:00
word { ![ \t\n]+ }
Heading { ![\n]+ }
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
}