Skip to Content
Learning XSLT
book

Learning XSLT

by Michael Fitzgerald
November 2003
Beginner
368 pages
9h 33m
English
O'Reilly Media, Inc.
Content preview from Learning XSLT

Chapter 2. Building New Documents with XSLT

In the first chapter of this book, you got acquainted with the basics of how XSLT works. This chapter will take you a few steps further by showing you how to add text and markup to your result tree with XSLT templates.

First, you’ll add literal text to your output. Then you’ll work with literal result elements, that is, elements that are represented literally in templates. You’ll also learn how to add content with the text, element, attribute, attribute-set, comment, and processing-instruction elements. In addition, you’ll get your first encounter with attribute value templates, which provide a way to define templates inside attribute values.

Outputting Text

You can put plain, literal text into an XSLT template, and it will be written to a result tree when the template containing the text is processed. You saw this work in the very first example in the book (msg.xsl in Chapter 1). I’ll go into more detail about adding literal text in this section.

Look at the single-element document text.xml in examples/ch02 (this directory is where all example files mentioned in this chapter can be found):

<?xml version="1.0"?>
  
<message>You can easily add text to your output.</message>

With text.xml in mind, consider the stylesheet txt.xsl:

<stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform">
<output method="text"/>
  
<template match="/">Message: <apply-templates/></template>

</stylesheet>

When applied to text.xml, here is what generally happens, ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

XSLT

XSLT

Doug Tidwell
Java and XSLT

Java and XSLT

Eric M. Burke
Inside XSLT

Inside XSLT

Steven Holzner
XSLT and XPATH: A Guide to XML Transformations

XSLT and XPATH: A Guide to XML Transformations

John Robert Gardner, Zarella L. Rendon

Publisher Resources

ISBN: 0596003277Supplemental ContentErrata Page