= :leveloffset: does not reset imagesdir I use the +:leveloffset:+ attribute to include independent subdocuments which can be processed individually.
Please consider the following tree: ---- ./master.asciidoc ./project1/doc1.asciidoc ./project1/image1.png ./project2/doc2.asciidoc ./project2/image2.png ---- The master document includes the two subdocuments each in its own folder: .master.asciidoc [source,asciidoc] ---- = Master :numbered: :leveloffset: 1 \include::project1/doc1.asciidoc[] \include::project2/doc2.asciidoc[] ---- .project1/doc1.asciidoc [source,asciidoc] ---- = Doc1 image::image1.png[] ---- .project2/doc2.asciidoc [source,asciidoc] ---- = Doc2 image::image2.png[] ---- Every project can be processed individually. But once included in the master document the images are not found any more, because the imagedir path is still relative to the position of the master document. -- You received this message because you are subscribed to the Google Groups "asciidoc" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/asciidoc. For more options, visit https://groups.google.com/groups/opt_out.
