blob: 8918e5aef843b0e7e7a7f293f940ed53f8ed9f6b [file] [log] [blame]
(: insert-start :)
declare variable $input-context external;
(: insert-end :)
declare function local:toc($book-or-section as element()) as element()*
{
for $section in $book-or-section/section
return
<section>
{ $section/@* , $section/title , local:toc($section) }
</section>
};
<toc>
{
for $s in $input-context/book return local:toc($s)
}
</toc>