summaryrefslogtreecommitdiff
path: root/alternative-html-blocks.txt
blob: 3ba0d1561429c3dc8b58bc3d05f6ddc5ea746200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
# Appendix B: An alternate spec for HTML blocks {-}

(The following spec departs less from original markdown than the
one described above, but is also less flexible.)

An [HTML block](#html-block) <a id="html-block-tag"/> begins
with an [open tag](#open-tag), [HTML comment](#html-comment),
[processing instruction](#processing-instruction),
[declaration](#declaration), or [CDATA section](#cdata-section).
This opening element may optionally be preceded by 1-3 spaces,
and must not be followed on a line by anything other than white space.

If the opening tag is self-closing, or if it is an [HTML
comment](#html-comment), [processing
instruction](#processing-instruction), [declaration](#declaration), or
[CDATA section](#cdata-section), then the [HTML block](#html-block)
contains just that tag.

If it is an [open tag](#open-tag), then the [HTML block](#html-block)
continues until a matching closing tag is found, or until the end
of the document.  Note that the matching closing tag is not necessarily
the first closing tag of the same type that is encountered, since
that tag may close a later open tag of the same type.  Open and closing
tags must be balanced.

The contents of the HTML block are interpreted as raw HTML, and will not
be escaped in HTML output.

Some simple examples:

.
<table>
  <tr>
    <td>
           hi
    </td>
  </tr>
</table>

okay.
.
<table>
  <tr>
    <td>
           hi
    </td>
  </tr>
</table>
<p>okay.</p>
.


.
<div class="outer">

    <div class="inner">

      <p>foo&ouml;</p>

    </div>

</div>
.
<div class="outer">

    <div class="inner">

      <p>foo&ouml;</p>

    </div>

</div>
.

A self-closing tag:

.
<div />
.
<div />
.

Here we have an unclosed tag, and the block continues to the end of
the document:

.
<div>
<div>
foo
</div>

*bar*
.
<div>
<div>
foo
</div>

*bar*
.

A comment:

.
<!-- Foo
bar
   baz -->
.
<!-- Foo
bar
   baz -->
.

A processing instruction:

.
<?php
  echo 'foo'
?>
.
<?php
  echo 'foo'
?>
.

CDATA:

.
<![CDATA[
function matchwo(a,b)
{
if (a < b && a < 0) then
  {
  return 1;
  }
else
  {
  return 0;
  }
}
]]>
.
<![CDATA[
function matchwo(a,b)
{
if (a < b && a < 0) then
  {
  return 1;
  }
else
  {
  return 0;
  }
}
]]>
.

The opening tag can be indented 1-3 spaces, but not 4:

.
  <!-- foo -->
    <!-- foo -->
.
  <!-- foo -->
<pre><code>&lt;!-- foo --&gt;
</code></pre>
.

The opening tag must be on a line (or lines) by itself:

.
<table><tr><td>
foo
</td></tr></table>
.
<p><table><tr<td> foo </td></tr></table></p>
.

.
<!-- foo -->bar
.
<p><!-- foo -->bar</p>
.

The opening tag need not be an HTML block tag or even an HTML tag:

.
<a>
foo
</a>
.
<a>
foo
</a>
.

.
<foo>
bar
</foo>
.
<foo>
bar
</foo>
.

So, note the difference:

.
<del>
bar
</del>

<del>bar</del>
.
<del>
bar
</del>
<p><del>bar</del></p>
.

This rule differs from John Gruber's original markdown syntax
specification, which says:

> The only restrictions are that block-level HTML elements —
> e.g. `<div>`, `<table>`, `<pre>`, `<p>`, etc. — must be separated from
> surrounding content by blank lines, and the start and end tags of the
> block should not be indented with tabs or spaces.

In some ways Gruber's rule is more restrictive than the one given
here:

- It requires that an HTML block be preceded and followed by a blank line.
- It does not allow the start tag to be indented.
- It does not allow the end tag to be indented.
- It does not require that the open tag be an HTML block-level tag.

Indeed, most markdown implementations, including some of Gruber's
own perl implementations, do not impose these restrictions.

However, unlike Gruber's rule, this one requires that the open
tag be on a line by itself.  It also differs from most markdown
implementations in how it handles the case where there is no matching
closing tag (a case not mentioned in Gruber's rule).  In such a case,
the rule stated above includes the whole rest of the document in the
HTML block.