diff options
author | Julien Lepiller <julien@lepiller.eu> | 2021-07-03 17:07:06 +0200 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2021-07-14 15:34:39 -0400 |
commit | 8eb0ee17b5b57893eefb3683a37ccb4783b13473 (patch) | |
tree | bdde9a2048897a9cd1dd4391c6c78ea80317a193 /syntax-highlight.scm | |
parent | 51727cbb7fc05ef743aab2d7b16314ea1ed790e4 (diff) |
sxml: Allow multiple classes.
* syntax-highlight.scm (highlights->sxml): Allow multiple tags in syntax
elements.
Diffstat (limited to 'syntax-highlight.scm')
-rw-r--r-- | syntax-highlight.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/syntax-highlight.scm b/syntax-highlight.scm index 4326a4c..265ff37 100644 --- a/syntax-highlight.scm +++ b/syntax-highlight.scm @@ -61,6 +61,12 @@ corresponding to the highlighting tag name." (map (match-lambda ((? string? str) str) - ((tag text) - `(span (@ (class ,(tag->class tag))) ,text))) + ((content ...) + (let loop ((tags '()) (text "") (content content)) + (match content + (() `(span (@ (class ,(string-join (map tag->class tags) " "))) ,text)) + (((? symbol? tag) content ...) + (loop (cons tag tags) text content)) + (((? string? s) content ...) + (loop tags (string-append text s) content)))))) highlights)) |