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