annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
1 X:stylesheet {
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
2
32
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
3 X:template = "section[@id and @name]" {
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
4 <a name="{@id}" /> <center><h4> !{@name} </h4></center>
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
5 !!;
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
6 }
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
7
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
8 X:template = "section[not(@id) and @name]" {
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
9 <center><h4> !{@name} </h4></center>
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
10 !!;
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
11 }
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
12
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
13 X:template = "section[not(@id) and not(@name)]" { !!; }
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
14
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
15 <!-- legacy section templates -->
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
16
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
17 X:template = "section[@name and @title]" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
18 <a name="{@name}" /> <center><h4> !{@title} </h4></center>
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
19 !!;
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
20 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
21
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
22 X:template = "section[not(@name) and @title]" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
23 <center><h4> !{@title} </h4></center>
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
24 !!;
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
25 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
26
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
27 X:template = "section[not(@name) and not(@title)]" { !!; }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
28
32
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
29 <!-- -->
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
30
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
31 X:template = "para" { <p> !!; </p> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
32
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
33 X:template = "para[@align]" { <p align="{@align}"> !!; </p> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
34
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
35 X:template = "initial" { <span class="initial"><b> !!; </b></span> }
15
2f7420346aee Initial emphasizing support. Using it for "Q:" and "A:" letter in FAQ.
Igor Sysoev <igor@sysoev.ru>
parents: 0
diff changeset
36
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
37
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
38 X:template = "programlisting" { <blockquote><pre> !!; </pre></blockquote> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
39
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
40 X:template = "para/programlisting" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
41 X:text disable-output-escaping="yes" {&lt;/p&gt; }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
42 <blockquote><pre> !!; </pre></blockquote>
71
c007b57d617c The first line indentation in a paragraph which is used in Russian
Ruslan Ermilov <ru@nginx.com>
parents: 57
diff changeset
43 X:text disable-output-escaping="yes" {&lt;p&gt; }
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
44 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
45
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
46
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
47 X:template = "note" { <blockquote class="note"> !!; </blockquote> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
48
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
49 X:template = "para/note" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
50 X:text disable-output-escaping="yes" {&lt;/p&gt; }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
51 <blockquote class="note"> !!; </blockquote>
71
c007b57d617c The first line indentation in a paragraph which is used in Russian
Ruslan Ermilov <ru@nginx.com>
parents: 57
diff changeset
52 X:text disable-output-escaping="yes" {&lt;p&gt; }
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
53 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
54
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
55 X:template = "list[@type='bullet']" { <ul> !!; </ul> }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
56 X:template = "para/list[@type='bullet']" {
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
57 X:text disable-output-escaping="yes" {&lt;/p&gt; }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
58 <ul> !!; </ul>
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
59 X:text disable-output-escaping="yes" {&lt;p&gt; }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
60 }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
61
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
62 X:template = "list[@type='enum']" { <ol> !!; </ol> }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
63 X:template = "para/list[@type='enum']" {
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
64 X:text disable-output-escaping="yes" {&lt;/p&gt; }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
65 <ol> !!; </ol>
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
66 X:text disable-output-escaping="yes" {&lt;p&gt; }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
67 }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
68
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
69 X:template = "listitem" { <li> !!; </li> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
70
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
71 X:template = "list[@type='tag']" { <dl compact=""> !!; </dl> }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
72 X:template = "para/list[@type='tag']" {
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
73 X:text disable-output-escaping="yes" {&lt;/p&gt; }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
74 <dl compact=""> !!; </dl>
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
75 X:text disable-output-escaping="yes" {&lt;p&gt; }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
76 }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
77
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
78 X:template = "tag-name" { <dt> !!; </dt> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
79 X:template = "tag-desc" { <dd> !!; </dd> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
80
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
81 <!-- legacy list templates -->
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
82
103
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
83 X:template = "list[not(@type)]" { <ul> !!; </ul> }
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
84 X:template = "para/list[not(@type)]" {
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
85 X:text disable-output-escaping="yes" {&lt;/p&gt; }
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
86 <ul> !!; </ul>
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
87 X:text disable-output-escaping="yes" {&lt;p&gt; }
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
88 }
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
89 X:template = "item" { <li> !!; </li> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
90
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
91
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
92 X:template = "orderedlist" { <ol> !!; </ol> }
103
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
93 X:template = "para/orderedlist" {
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
94 X:text disable-output-escaping="yes" {&lt;/p&gt; }
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
95 <ol> !!; </ol>
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
96 X:text disable-output-escaping="yes" {&lt;p&gt; }
b2e9c172a156 Fixing HTML.
Ruslan Ermilov <ru@nginx.com>
parents: 92
diff changeset
97 }
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
98 X:template = "item" { <li> !!; </li> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
99
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
100 <!-- -->
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
101
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
102 X:template = "table[@note and @width]" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
103 <blockquote><table width="{@width}"> !!; </table></blockquote>
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
104 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
105 X:template = "table[@note and not(@width)]" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
106 <blockquote><table width="100%"> !!; </table></blockquote>
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
107 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
108 X:template = "table[not(@note) and @width]" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
109 <table width="{@width}"> !!; </table>
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
110 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
111 X:template = "table" { <table width="100%"> !!; </table> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
112 X:template = "tr" { <tr> !!; </tr> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
113 X:template = "td[@width]" { <td width="{@width}"> !!; </td> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
114 X:template = "td" { <td> !!; </td> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
115
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
116 X:template = "c-def" { <code> !!; </code> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
117
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
118 X:template = "c-func" { <code> !!; X:text{()} </code> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
119
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
120 X:template = "command" { <code> !!; </code> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
121
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
122 X:template = "dq" {
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
123 X:text disable-output-escaping="yes" {&amp;ldquo;}
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
124 !!;
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
125 X:text disable-output-escaping="yes" {&amp;rdquo;}
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
126 }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
127
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
128 X:template = "emphasis" { <strong> !!; </strong> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
129
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
130 X:template = "example" { <blockquote><pre> !!; </pre></blockquote> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
131
90
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
132 X:template = "para/example" {
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
133 X:text disable-output-escaping="yes" {&lt;/p&gt; }
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
134 <blockquote><pre> !!; </pre></blockquote>
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
135 X:text disable-output-escaping="yes" {&lt;p&gt; }
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
136 }
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
137
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
138 X:template = "pathname" { <code> !!; </code> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
139
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
140 X:template = "argument" { <code><i> !!; </i></code> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
141 X:template = "parameter" { <code> !!; </code> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
142
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
143 X:template = "header" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
144 X:text {&#8220;} !!; X:text {&#8221;}
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
145 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
146
52
666e85596e3c Added support for <link url="..."> which should eventually replace
Ruslan Ermilov <ru@nginx.com>
parents: 32
diff changeset
147 X:template = "http-status" {
666e85596e3c Added support for <link url="..."> which should eventually replace
Ruslan Ermilov <ru@nginx.com>
parents: 32
diff changeset
148 !{@code} X:text { (} !{@text} X:text{)}
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
149 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
150
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
151 X:template = "dirname[/*[@lang='he']]" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
152 <nobr><span class="ltr">
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
153 X:text {&#8220;} !!; X:text {&#8221;}
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
154 </span></nobr>
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
155 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
156
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
157 X:template = "dirname" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
158 <nobr> X:text {&#8220;} !!; X:text {&#8221;} </nobr>
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
159 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
160
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
161 X:template = "url[/*[@lang='he']]" {
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
162 <i><span class="ltr"> !!; </span></i>
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
163 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
164
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
165 X:template = "url" { <i> !!;</i> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
166
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
167 X:template = "value" { <code> !!; </code> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
168
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
169 X:template = "var" { <code> !!; </code> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
170
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
171 X:template = "path" { X:text {&#8220;} <code> !!; </code> X:text {&#8221;} }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
172 X:template = "code" { <code> !!; </code> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
173 X:template = "i" { <i> !!; </i> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
174 X:template = "b" { <b> !!; </b> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
175 X:template = "nobr" { <nobr> !!; </nobr> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
176 X:template = "mdash" { X:text {&#xA0;&#8212; } }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
177 X:template = "space" { X:text { } }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
178 X:template = "br" { <br/> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
179
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
180
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
181 }