in reply to xml::twig and stylesheets
What is an "xml-stylesheet reference" exactly?
If you mean a processing that attaches an xsl stylesheet (eg <?xml-stylesheet type= "text/xls" href="xls_style.xlss"?>, then it's a processing instruction, and can be inserted as a regular PI: create an element with a tag of '#PI' and set its target to xml-stylesheet (using set_target) and its data to type= "text/xls" href="xls_style.xlss" (using set_data).
Does this help?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: xml::twig and stylesheets
by rogue90 (Novice) on Mar 22, 2006 at 21:32 UTC | |
by mirod (Canon) on Mar 23, 2006 at 05:49 UTC | |
by Tanktalus (Canon) on Mar 23, 2006 at 14:57 UTC | |
by mirod (Canon) on Mar 23, 2006 at 16:11 UTC | |
by rogue90 (Novice) on Mar 23, 2006 at 14:54 UTC | |
Re^2: xml::twig and stylesheets
by rogue90 (Novice) on Mar 22, 2006 at 20:26 UTC |
In Section
Seekers of Perl Wisdom