rec 1.1 7.7.4

http://www.w3.org/TR/xsl/#text-decoration

Notation used

CSS2 Definition:
Value:  none | [ [ underline | no-underline] || [ overline |
no-overline ] || [ line-through | no-line-through ] || [ blink |
no-blink ] ] | inherit

Doesn't make much sense to me as a content model?

What does || mean? Are they alternataives? Why are two bars necessary.

Replacing them with single bar would make it consistent with the
remainder of the models?

none |
   [
       [ underline | no-underline]
       || [ overline | no-overline ]
       || [ line-through | no-line-through ]
       || [ blink | no-blink ]
   ] |
  inherit

becomes

none |
   [
       [ underline | no-underline]
       | [ overline | no-overline ]
       | [ line-through | no-line-through ]
       | [ blink | no-blink ]
   ] |
  inherit

Is it really necessary to copy CSS fancies?


regards


-- 
Dave Pawson
XSLT XSL-FO FAQ.
Docbook FAQ.
http://www.dpawson.co.uk

Received on Friday, 10 December 2010 09:16:56 UTC