-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
44 lines (29 loc) · 1.4 KB
/
example.html
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
<h1 >Example Kami File</h1>
<p>This kami file contains all the features that a Kami interpreter should have:</p>
<p><b >Bold</b> and <strong >strong</strong> text must be differentiated. Same thing goes for <i >italicized</i> and <em >emphasized</em>. *They can be escaped* _like this_.</p>
<p>It has to be possible to have them <b ><i >in combination</i> like this</b></p>
<p>This is a <a href="ampersandia.net" id="example" rel="me">hyperlink</a>, they can also have ID, Class and all sorts of HTML attributes</p>
<h2 class="subtitle" > Headers</h2>
<p>They can contain attributes as well. This one has a class.</p>
<p><sub >Subscript</sub> and <sup >supercript</sup> can very importantly contain spaces.</p>
<p class="example-p" > A paragraph can also contain attributes</p>
<p>This paragraph is justified</p>
<p id="rightalign" > This one is right-aligned and has an ID</p>
<p><code >This is inline code</code> (yes, it can have attributes). Code blocks are the same but they have three backticks</p>
<p><span >this is a span</span> (yep. it can also have attributes)</p>
<link>
<ul >
<li >This is a normal list</li>
<li >Without numbered stuff</li>
<li id="id" class="class" > This one has ID and Class</li>
</ul>
<ul id="id" class="class" >
<li >list with attributes</li>
</ul>
<ol >
<li >This is a</li>
<li >Numbered list</li>
</ol>
<ol id="id" class="class" >
<li >numbered list with attributes</li>
</ol>