comparison xsls/content.xsls @ 103:b2e9c172a156

Fixing HTML.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 19 Oct 2011 08:18:31 +0000
parents 4b0182b7b1e5
children 40eec261c2a6
comparison
equal deleted inserted replaced
102:c76a257f3fd4 103:b2e9c172a156
78 X:template = "tag-name" { <dt> !!; </dt> } 78 X:template = "tag-name" { <dt> !!; </dt> }
79 X:template = "tag-desc" { <dd> !!; </dd> } 79 X:template = "tag-desc" { <dd> !!; </dd> }
80 80
81 <!-- legacy list templates --> 81 <!-- legacy list templates -->
82 82
83 X:template = "list" { <ul> !!; </ul> } 83 X:template = "list[not(@type)]" { <ul> !!; </ul> }
84 X:template = "para/list[not(@type)]" {
85 X:text disable-output-escaping="yes" {&lt;/p&gt; }
86 <ul> !!; </ul>
87 X:text disable-output-escaping="yes" {&lt;p&gt; }
88 }
84 X:template = "item" { <li> !!; </li> } 89 X:template = "item" { <li> !!; </li> }
85 90
86 91
87 X:template = "orderedlist" { <ol> !!; </ol> } 92 X:template = "orderedlist" { <ol> !!; </ol> }
93 X:template = "para/orderedlist" {
94 X:text disable-output-escaping="yes" {&lt;/p&gt; }
95 <ol> !!; </ol>
96 X:text disable-output-escaping="yes" {&lt;p&gt; }
97 }
88 X:template = "item" { <li> !!; </li> } 98 X:template = "item" { <li> !!; </li> }
89 99
90 <!-- --> 100 <!-- -->
91 101
92 X:template = "table[@note and @width]" { 102 X:template = "table[@note and @width]" {