-
Notifications
You must be signed in to change notification settings - Fork 0
/
Markup Intro.htm
127 lines (96 loc) · 1.79 KB
/
Markup Intro.htm
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
= Markup Languages Intro =<br/>
<!--
[
|*| Source: https://github.com/MasterInQuestion/Markup/blob/main/Markup%20Intro.htm
|*| Last update: CE 2022-08-28 02:50 UTC ]
-->
<br/>
A table explaining the concept of markup languages.<br/>
<br/>
<table border>
<!-- >>>> (0) -->
<!-- Row 1: -->
<tr style="background-color: #000; color: #FFF">
<td colspan="2">
<pre>
|*| `"` (Quotation Mark) (U+0022, 0x22, &#34;)
|*| "“" (Left Double Quotation Mark) (U+201C, 0xE2809C, &#8220;)
|*| "”" (Right Double Quotation Mark) (U+201D, 0xE2809D, &#8221;)
</pre>
</td>
</tr>
<!-- Row 2: -->
<tr>
<td>
<pre>
"123"
“123”
</pre>
</td>
<td>
<pre>
"1"2"3"
“1“2”3”
</pre>
</td>
</tr>
<!-- Row 3: -->
<tr>
<td>
<pre>
<b>Bold</b><br/>
<i>Italic</i><br/>
<s>Strikeout</s><br/>
<u>Underline</u>
</pre>
</td>
<td>
<b>Bold</b><br/>
<i>Italic</i><br/>
<s>Strikeout</s><br/>
<u>Underline</u>
</td>
</tr>
<!-- Row 4: -->
<tr>
<td colspan="2">
<pre>
'''Bold'''
''Italic''
~~Strikeout~~
</pre>
</td>
</tr>
<!-- Row 5: -->
<tr>
<td colspan="2">
<pre>
Pseudo-Reference:
[[
<b>Bold<b>
]]
</pre>
</td>
</tr>
<!-- Row 6: -->
<tr>
<td>
<pre>
XML (HTML):
[[
<b><b style="color: #ff0000">B</b>old</b>
]]
</pre>
</td>
<td>
<b><b style="color: #ff0000">B</b>old</b>
</td>
</tr>
<!-- <<<< (0) -->
</table>
<br/>
<hr style="border: hidden; border-top: 1px dashed #F00" />Read the unrendered source.
<!--
The sophisticated markup, much too relied on syntax highlighting: merely to properly read.
But to embed attributes into the inline markup... Dead end of layout definition languages?
-->