[[:space:]]*</
<my>[[:space:]]*

There are times when working with XML documents that it would be nice
to be able to style the document directly. To do this with CSS here is
a recipe that works with Internet Explorer, Firefox and the Arbortext
Epic Editor.
<?xml-stylesheet href="docbook.css" type="text/css"?> |
<?xml version="1.0" encoding="utf-8"?> |
book { |
CA
I have run into issues with the <br> element especially with
programs that convert things to HTML. A quick way to suppress all of
the breaks is to add the following to your CSS stylesheet:
br { display: none;}
CA
Another must have extension for Firefox. Adds a menu and a toolbar with
various web developer tools such as converting form POSTs to GETs,
hiding images, outlining block level elements, disabling styles and many more.
http://extensionroom.mozdev.org/more-info/webdeveloper
CA
I was working on a stylesheet today that begs for a regular expression.
The Problem:
<file path='connector\fig\82675-48040.svgz'/>
I want to use parts of the path attribute but since the length varies I
can't use the string() function. It appears there is no good way to do
it in XSLT 1.0
The XSLT 2.0 spec is a working draft at this point. It appears that in
2.0 something like this will be available:
<xsl:value-of select='matches([REG EXP])'/>
CA

For some more information about typography issues internationally, see http://www.oasis-open.org/cover/WD-XSLReq-19980511.html#AEN316 .
While it dates back to 1998 typography changes slowly so it is up to date.
[[:space:]]*</
<my>[[:space:]]*
Powered by WordPress