Hello,
I need to create a specialization for DITA. Simply put, there are some domain-specific tags I'd like to use in my document. For example, this:
<tag>
text
</tag>is supposed to be processed through XSL stylesheet and be turned into one of existing elements supported by pdf2 processor:
<b>
<i>
test
</i>
<b>
I have written the necessary XSLT transformations and tested them standalone. Now, as far as I understand, I need to provide the necessary document type definitions to DITA. This tutorial:
https://dita4practitioners.github.io/dita-specialization-tutorials/ implies the user should
copy one of DTD files and edit it.
Is there a way around it? It would be good to just reference the existing document type (topic in my case) and extend it with new element definitions. Are there any specialization plugin examples where this is implemented?
Regards,
Vlad