mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
doc: Syntax highlighting now handles @var within @lisp.
* doc/build.scm (syntax-highlighted-html)[build](concatenate-pieces): Handle @var{name}.
This commit is contained in:
parent
720fd7320f
commit
fe409700d8
1 changed files with 2 additions and 0 deletions
|
@ -310,6 +310,8 @@ (define (concatenate-snippets pieces)
|
||||||
(loop rest (cons (entity->string entity) strings)))
|
(loop rest (cons (entity->string entity) strings)))
|
||||||
((('span _ lst ...) . rest) ;for <span class="roman">
|
((('span _ lst ...) . rest) ;for <span class="roman">
|
||||||
(loop (append lst rest) strings))
|
(loop (append lst rest) strings))
|
||||||
|
((('var name) . rest) ;for @var{name} within @lisp
|
||||||
|
(loop rest (cons name strings))) ;XXX: losing formatting
|
||||||
(something
|
(something
|
||||||
(pk 'unsupported-code-snippet something)
|
(pk 'unsupported-code-snippet something)
|
||||||
(primitive-exit 1)))))
|
(primitive-exit 1)))))
|
||||||
|
|
Loading…
Reference in a new issue