Skip to content

Commit 18b2cfb

Browse files
author
delphidabbler
committed
Fixed HTML errors & trimmed trailing spaces
1 parent a1afba2 commit 18b2cfb

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

csdb/v4.16/docs/reml.html

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
</li>
5555
</ul>
5656
</nav>
57-
57+
5858
</header>
5959

6060
<section id="intro">
@@ -76,23 +76,23 @@ <h1>
7676
</section>
7777

7878
<section id="tags">
79-
79+
8080
<h1>
8181
Tags
8282
</h1>
83-
83+
8484
<p>
8585
There are two types of tags: block level and in-line.
8686
</p>
87-
87+
8888
<p>
8989
If an unrecognised tag is encountered an REML code the interpreter <em>should</em> report an error. However, providing start and end tags are matched, the interpreter <em>may</em> choose to simply ignore the tags.
9090
</p>
9191

9292
<h2>
9393
Block Level Tags
9494
</h2>
95-
95+
9696
<p>
9797
Block level tags separate the enclosed text into paragraphs of some description. The supported tags are:
9898
</p>
@@ -136,7 +136,7 @@ <h2>
136136
</p>
137137
<pre class="sample">&lt;p&gt;wrong &lt;/p&gt;&lt;heading&gt;blah&lt;/heading&gt;&lt;p&gt;wrong &lt;/p&gt;&lt;p&gt;blah&lt;/p&gt;&lt;p&gt;wrong&lt;/p&gt;</pre>
138138
<aside>
139-
<strong>Note:</strong> Code Snippets Database collections <em>may</em> contain such non-conforming REML. Therefore interpreters of REML that need to accept such collections <span class="very-strong">must</span> be able to handle text without enclosing block tags.
139+
<strong>Note:</strong> Code Snippets Database collections <em>may</em> contain such non-conforming REML. Therefore interpreters of REML that need to accept such collections <span class="very-strong">must</span> be able to handle text without enclosing block tags.
140140
</aside>
141141

142142
<h2>
@@ -199,7 +199,7 @@ <h2>
199199
<h1>
200200
Character Entities
201201
</h1>
202-
202+
203203
<p>
204204
A few symbolic character entities are supported in REML. Here is the complete list:
205205
</p>
@@ -225,9 +225,13 @@ <h1>
225225
<strong>Note:</strong> the '&lt;' and '&amp;' characters are special within the markup and cannot be used literally, even when you are just entering plain text. You <span class="very-strong">must</span> use the <code class="value">&amp;lt;</code> character entity in place of <code class="value">&lt;</code> and <code class="value">&amp;amp;</code> instead of <code class="value">&amp;</code>. For example to write <code class="value">x&lt;y</code> in REML use <code class="value">x&amp;lt;y</code> and to write <code class="value">you &amp; me</code> use <code class="value">you &amp;amp; me</code>.
226226
</aside>
227227

228-
To express other special symbols for which there is no symbolic character entity, numeric character entities can be used. For example to display the '¶' character (Unicode <em>pilcrow sign</em>) use <code class="value">&amp;#182;</code>.
228+
<p>
229+
To express other special symbols for which there is no symbolic character entity, numeric character entities can be used. For example to display the '¶' character (Unicode <em>pilcrow sign</em>) use <code class="value">&amp;#182;</code>.
230+
</p>
229231

230-
> **Note:** Numeric entities should be used with caution because the characters they represent may vary across different text encodings, whereas symbolic entities are safe across encodings.
232+
<aside>
233+
<strong>Note:</strong> Numeric entities should be used with caution because the characters they represent may vary across different text encodings, whereas symbolic entities are safe across encodings.
234+
</aside>
231235

232236
</section>
233237

0 commit comments

Comments
 (0)