Hi,
In message "[ruby-talk:00892] Re: RDtool-0.5.0"
on 99/11/01, Toshiro Kuwabara <toshirok / yb3.so-net.ne.jp> writes:
|I gave a glance at perlpod(1) and POD of pod2html, and I understood pod2xxx
|does only <EM>...</EM> for such a L<name>. right?
Pod2html trys to create href link, if possible.
|If rd2html can do Hyper-Link for Reference like L<name>, it will be pretty
|useful. Is there good solution for it?
Pod2html do it as (in process_L):
* scan the destination file and put every label into hash.
* if the entry is found in hash, create href link.
* otherwise, create <EM>..</EM>.
|Form is another problem.
|* ((<foo/"sec">)) (like POD)
|* ((<RD:foo>)), ((<RD:foo#sec>)) (like ((<URL:...>)) )
|Well...
|I want another better idea. Please!
I like POD way due to its simplicity.
We should consider about makeing label (e.g. <a name="xxx"> etc.) too.
matz.