mirror of
https://github.com/kou029w/quot.git
synced 2025-01-19 00:18:09 +00:00
14 lines
344 B
Text
14 lines
344 B
Text
@top Document { heading line* }
|
|
|
|
heading { Heading? "\n" }
|
|
line { Indent* ((AutoLink | word) space*)* "\n" }
|
|
|
|
@tokens {
|
|
space { $[ \t] }
|
|
letter { ![ \t\n] }
|
|
word { letter+ }
|
|
Heading { (letter | space)+ }
|
|
Indent { space }
|
|
AutoLink { ("http" | "https") "://" word }
|
|
@precedence { AutoLink, word }
|
|
}
|