This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: How to include entity definitions?


> I would like to setup a list of SYSTEM-entity definitions which I need 
> for multiple targets into a separate file. How would I include this file 
> into my doctype-element ?

Well this is actually an XML question and not Docbook specific...
But you can include this as any other external entity in the file:


<!DOCTYPE .... [

    <!ENTITY % external.file SYSTEM "external.file.ent">
    %external.file;

]>

I used the .ent extension, because you are going to define entitites in
that file...

Goba



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]