8 lines
378 B
Scheme
8 lines
378 B
Scheme
; All non-tag content is HTML. injection.combined concatenates every
|
|
; content node so an HTML tag opened in one chunk can close in another
|
|
; (across a {block:Foo}...{/block:Foo}). HTML's own injection queries
|
|
; then take over for <style> and <script>, giving us CSS and JS for free.
|
|
((content) @injection.content
|
|
(#set! injection.language "html")
|
|
(#set! injection.combined))
|