XSLT – template
<xsl:template> defines a way to reuse templates in order to generate the desired output for nodes of a particular type/context. Declaration Following is the syntax declaration of <xsl:template> element. <xsl:template name =…
<xsl:template> defines a way to reuse templates in order to generate the desired output for nodes of a particular type/context. Declaration Following is the syntax declaration of <xsl:template> element. <xsl:template name =…
Let’s suppose we have the following sample XML file, students.xml, which is required to be transformed into a well-formatted HTML document. students.xml <?xml version = "1.0"?> <class> <student rollno =…
SED is an amazing utility that allows multiple ways to solve a problem. This is the UNIX way and SED perfectly proves that. GNU/Linux provides many useful utilities to perform…
EXtensible Stylesheet Language Transformation commonly known as XSLT is a way to transform the XML document into other formats such as XHTML. This tutorial explains the basics of XSLT. It contains chapters discussing…
Whenever you want to delete a record from any HSQLDB table, you can use the DELETE FROM command. Syntax Here is the generic syntax for the DELETE command to delete…
It is the regular expressions that make SED powerful and efficient. A number of complex tasks can be solved with regular expressions. Any command-line expert knows the power of regular…
Being able to properly define the document that you intend to create is a fundamental prerequisite to get the best out of InDesign. You can create a new document by…
We have already discussed the use of pattern and hold buffer. In this chapter, we are going to explore more about their usage. Let us discuss the n command which prints the…
It is important to properly understand the user interface to get the most out of InDesign. Let us take a quick tour of the user interface. What we see above…
Substitute Command Text substitution operations like "find and replace" are common in any text editor. In this section, we illustrate how SED performs text substitution. Given below is the syntax…