scribble: fix list splicing for sections

original commit: 570f51e942d3668727f7534c92e18837697d8e96
This commit is contained in:
Matthew Flatt 2013-08-03 12:18:03 -06:00
parent 5e16b991ff
commit 250202ad87
3 changed files with 25 additions and 3 deletions

View File

@ -245,9 +245,13 @@
(part-to-collect part)
para
(cons s (part-parts part))))
(if (splice? (car l))
(loop (append (splice-run (car l)) (cdr l)) s-accum)
(loop (cdr l) (cons (car l) s-accum))))))]
(cond
[(splice? (car l))
(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))
(loop (append (splice-run (car l)) (cdr l))
next? keys colls accum title tag-prefix tags vers style)]

View File

@ -0,0 +1,9 @@
#lang scribble/base
@title{A}
@section{B}
@(list @subsection{C})
@(list @subsection{D})

View File

@ -0,0 +1,9 @@
A
1. B
1.1. C
1.2. D