xsl-list
[Top] [All Lists]

Re: [xsl] unparsed text

2012-11-15 13:11:49
At 2012-11-15 19:05 +0000, Ihe Onwuka wrote:
 I need to process a plain text file with XSLT... do I have to fake an
XML document to input as there is no XML

It all depends on how you invoke the XSLT processor.

You can invoke XSLT by specifying the name of a starting template. An example using Saxon is:

  java -jar saxon.jar -it:start-me-up -xsl:myStylesheet.xsl

... and then have:

  <xsl:template name="start-me-up">

But I often just supply the stylesheet as my input XML document:

  java -jar saxon.jar -s:myStylesheet.xsl -xsl:myStylesheet.xsl

... and then have:

  <xsl:template match="/">

Remember that an XSLT stylesheet is, itself, an XML document.

I hope this helps.

. . . . . . . Ken


--
Contact us for world-wide XML consulting and instructor-led training
Free 5-hour lecture: http://www.CraneSoftwrights.com/links/udemy.htm
Crane Softwrights Ltd.            http://www.CraneSoftwrights.com/s/
G. Ken Holman                   mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Google+ profile: https://plus.google.com/116832879756988317389/about
Legal business disclaimers:    http://www.CraneSoftwrights.com/legal


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>