
This highlights edoc within Erlang comments. The trick was to have the Erlang grammar consume newlines and then give them to EDoc in the injection to use so that line-wise elements could be parsed accurately.
7 lines
241 B
Scheme
7 lines
241 B
Scheme
((line_comment (comment_content) @injection.content)
|
|
(#set! injection.language "edoc")
|
|
(#set! injection.include-children)
|
|
(#set! injection.combined))
|
|
|
|
((comment (comment_content) @injection.content)
|
|
(#set! injection.language "comment"))
|