sub.scrbl (937B)
1 #lang scribble/manual 2 3 @title[#:tag-prefix '(lib "test-tag-prefix/scribblings/sub.scrbl")]{sub} 4 5 @(require scribble/struct 6 scribble/decode) 7 8 @(make-toc-element #f 9 (list (elemtag '(prefixable "foo") "foo-tag")) 10 (list (elemref '(prefixable "foo") "foo-ref-in-toc"))) 11 12 @(make-toc-element #f 13 (list (elemtag '(prefixable "bar") "bar-tag")) 14 (list (make-link-element #f 15 (decode-content (list "bar-ref-in-toc")) 16 `(elem (prefixable "(lib test-tag-prefix/scribblings/test-tag-prefix.scrbl)" 17 "(lib test-tag-prefix/scribblings/sub.scrbl)" 18 "bar"))))) 19 20 @(elemref '(prefixable "foo") "foo-ref-in-part") 21 22 @(elemref '(prefixable "bar") "bar-ref-in-part")