Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. littlepixel

    Entities from the command line

    I've got a tricky bit of web design going whereby I pass a parameter to my xml parser (Saxon) via the command line. For instance, to transform my xml database into html pages, I run a batch file with multiple lines of the type: saxon -o myOutputfile.html myXMLFile.xml myXSLFile.xsl...
  2. littlepixel

    <![CDATA[ ... ]]>

    BUT! I just came across this page: http://www.dpawson.co.uk/xsl/sect2/cdata.html It basically explains how to do just what we are trying to do, put HTML into XML. They describe use of the <xsl:copy-of> tag and also use of an http namespace for html content. I'm just reading it now, and since...
  3. littlepixel

    &lt;![CDATA[ ... ]]&gt;

    I thought I did, but the best I was wrong. I inserted some CDATA regions into my XML like: <![CDATA[<em>]]>empahsize me<![CDATA[</em>]]> but somewhere in the process the < becomes a &lt; and the > becomes &gt; and it's therefore not interpreted as a tag but as text. I wonder if there's...
  4. littlepixel

    &lt;![CDATA[ ... ]]&gt;

    I have a similar question, I would like to have a CDATA Element declared like: <!ELEMENT name CDATA> and then in the xml file: <name>Hi, I can use <strong>strong</strong> tags if I feel like it </name> but I get two distinct problems when running through a validator (validator.w3.org): 1)...

Part and Inventory Search

Back
Top