Hi, Brian,
It's hard to say what's going wrong without actually seeing the DTD files that you're trying to use. Could you zip them up and send them? If you don’t want to send them to the list, just send them to my direct email.
Chris Maloney
NIH/NLM/NCBI (Contractor)
Building 45, 5AN.24D-22
--
You received this message because you are subscribed to the Google Groups "DtdAnalyzer" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
dtdanalyzer...@googlegroups.com.
To post to this group, send email to
dtdan...@googlegroups.com.
Visit this group at http://groups.google.com/group/dtdanalyzer?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Did you figure this out on your own? If not, and you still want help, just let us know more details so we can try to reproduce the problem.
Chris Maloney
NIH/NLM/NCBI (Contractor)
Building 45, 5AN.24D-22
From: Brian Wong [mailto:wong...@gmail.com]
Sent: Tuesday, January 29, 2013 6:27 PM
To: dtdan...@googlegroups.com
Subject: dtddocumentor DtdAnalyzer
Hi,
--
Hi, Brian,
You found a bug. Bare text (not enclosed in elements) is not getting copied properly by the documentor stylesheet. I fixed it here: https://github.com/NCBITools/DtdAnalyzer/commit/7460144791135c99884d0dd4a73b9330d7c5782c.
If you want this fix, you could clone and build the repository yourself (it should be easy if you have the JDK installed somewhere) or else wait for our next release.
Otherwise, a simple work-around is to always make sure the documentation is wrapped in an HTML element. Instead of
<!-- ~~ <act>
ACT
~~ -->
Use this:
<!-- ~~ <act>
<p>ACT</p>
~~ -->
Or something similar.
Or use Markdown – we usually have markdown turned on, and that’s why we never noticed this before.
Markdown used to be the default, but we changed it, thinking not everyone would have (or would want to install) the Markdown processor pandoc on their systems. So the examples *used* to work out-of-the-box. Since changing the default, the documentation and examples are lagging behind a bit.
--