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