scribble: fix list splicing for sections
original commit: 570f51e942d3668727f7534c92e18837697d8e96
This commit is contained in:
parent
5e16b991ff
commit
250202ad87
|
@ -245,9 +245,13 @@
|
||||||
(part-to-collect part)
|
(part-to-collect part)
|
||||||
para
|
para
|
||||||
(cons s (part-parts part))))
|
(cons s (part-parts part))))
|
||||||
(if (splice? (car l))
|
(cond
|
||||||
(loop (append (splice-run (car l)) (cdr l)) s-accum)
|
[(splice? (car l))
|
||||||
(loop (cdr l) (cons (car l) s-accum))))))]
|
(loop (append (splice-run (car l)) (cdr l)) s-accum)]
|
||||||
|
[(list? (car l))
|
||||||
|
(loop (append (car l) (cdr l)) s-accum)]
|
||||||
|
[else
|
||||||
|
(loop (cdr l) (cons (car l) s-accum))]))))]
|
||||||
[(splice? (car l))
|
[(splice? (car l))
|
||||||
(loop (append (splice-run (car l)) (cdr l))
|
(loop (append (splice-run (car l)) (cdr l))
|
||||||
next? keys colls accum title tag-prefix tags vers style)]
|
next? keys colls accum title tag-prefix tags vers style)]
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
#lang scribble/base
|
||||||
|
|
||||||
|
@title{A}
|
||||||
|
|
||||||
|
@section{B}
|
||||||
|
|
||||||
|
@(list @subsection{C})
|
||||||
|
|
||||||
|
@(list @subsection{D})
|
|
@ -0,0 +1,9 @@
|
||||||
|
A
|
||||||
|
|
||||||
|
1. B
|
||||||
|
|
||||||
|
1.1. C
|
||||||
|
|
||||||
|
|
||||||
|
1.2. D
|
||||||
|
|
Loading…
Reference in New Issue
Block a user