You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: csdb/v4.16/docs/reml.html
+13-9Lines changed: 13 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@
54
54
</li>
55
55
</ul>
56
56
</nav>
57
-
57
+
58
58
</header>
59
59
60
60
<sectionid="intro">
@@ -76,23 +76,23 @@ <h1>
76
76
</section>
77
77
78
78
<sectionid="tags">
79
-
79
+
80
80
<h1>
81
81
Tags
82
82
</h1>
83
-
83
+
84
84
<p>
85
85
There are two types of tags: block level and in-line.
86
86
</p>
87
-
87
+
88
88
<p>
89
89
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.
90
90
</p>
91
91
92
92
<h2>
93
93
Block Level Tags
94
94
</h2>
95
-
95
+
96
96
<p>
97
97
Block level tags separate the enclosed text into paragraphs of some description. The supported tags are:
<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 <spanclass="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 <spanclass="very-strong">must</span> be able to handle text without enclosing block tags.
140
140
</aside>
141
141
142
142
<h2>
@@ -199,7 +199,7 @@ <h2>
199
199
<h1>
200
200
Character Entities
201
201
</h1>
202
-
202
+
203
203
<p>
204
204
A few symbolic character entities are supported in REML. Here is the complete list:
205
205
</p>
@@ -225,9 +225,13 @@ <h1>
225
225
<strong>Note:</strong> the '<' and '&' characters are special within the markup and cannot be used literally, even when you are just entering plain text. You <spanclass="very-strong">must</span> use the <codeclass="value">&lt;</code> character entity in place of <codeclass="value"><</code> and <codeclass="value">&amp;</code> instead of <codeclass="value">&</code>. For example to write <codeclass="value">x<y</code> in REML use <codeclass="value">x&lt;y</code> and to write <codeclass="value">you & me</code> use <codeclass="value">you &amp; me</code>.
226
226
</aside>
227
227
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 <codeclass="value">&#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 <codeclass="value">&#182;</code>.
230
+
</p>
229
231
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.
0 commit comments