
PaML is a markup language based heavily on random Markdown flavours and my needs for easier editing of pokerfacowaty.com; it is intended to be used for rendering HTML.
At its current state, PaML elements have set classes for styling and the reason for the choice of classes is simply whatever names I'm using for pokerfacowaty.com's styling. I would like to have custom classes / ids in the future, but that's going to require a lot of additional work.
PaML can be converted to HTML using paml2html.
You can also track the development of both the converter and the language on this Vikunja page!
This entire website was initially written in PaML. Find its source here (saved in .txt so that your browser can display it).
Headings in PaML use the Markdown convention. # Text becomes <h1>Text</h1>, ## Text - <h2>Text</h2> and so on up until <h6>.
Paragraphs in PaML are surrounded by curly brackets {}. The lines containing the opening and closing paranthesis must be separate from the rest of the text. Paragraphs can either be text-only or contain a single image on the side. Text can be indented, as whitespace at the beginning of every line is ignored. Since the paragraphs' text are simply <p> tags, multiple spaces are replaces with just a single one. New lines are replaced with as kept as <br> tags.
{
text
}
<div class="paragraph">
<p>text</p>
</div>
text
{!l[alt text](image.png)
text
}
<div class="paragraph">
<img alt="alt text" src="image.png" class="img-half-left" />
<p>text</p>
</div>
text
{!r[alt text](image.png)
text
}
<div class="paragraph">
<img alt="alt text" src="image.png" class="img-half-right" />
<p>text</p>
</div>
text
Regular images are added the same way as in Markdown.

<img alt="alt text" src="image.png" />
Code as a separate element is split into code lines and code blocks. Code line is simply a code block that has only a single line. Separating the two allows for different styling in terms of e.x. text wrapping.
Note: inline code is treated as text decorator and can be found at the top of this document.
Important: The three backticks with optional comments at the start and the three backticks at the end of code have to be on separate lines. Some examples below use three quotation marks instead of three backticks for presentation purposes.
```/* Auto connect */ /** Connects, small comment **/
server add -ssl -auto -network {network} {link} {port}
'''
<div class="line-code-box">
<div class="line-code-comment">Auto connect</div>
<div class="line-code-small-comment">Connects, small comment</div>
<code class="line-code">server add -ssl -auto -network {network} {link} {port}</code>
</div>
server add -ssl -auto -network {network} {link} {port}
```/* break vs continue *//**Small block code comment **/
for x in "abcd":
if x == "c":
break
print(x) # a, b
for x in "abcd":
if x == "c":
continue
print(x) # a, b, d
'''
<div class="block-code-box">
<div class="block-code-comment">break vs continue</div>
<div class="block-code-small-comment">Small block code comment</div>
<code class="block-code">
<pre>for x in "abcd":
if x == "c":
break
print(x) # a, b
for x in "abcd":
if x == "c":
continue
print(x) # a, b, d</pre>
</code>
</div>
for x in "abcd":
if x == "c":
break
print(x) # a, b
for x in "abcd":
if x == "c":
continue
print(x) # a, b, d
Lists in PaML are made the same way as in Markdown. Note that Lists are currently the only object that reacts to a new line - a list will end whenever there is an empty line that would be skipped in other cases. Lists currently only support formatted text.
Unordered lists are made with dashes -.
- Element 1
- Element 2
- Element 3
<ul>
<li>Element 1</li>
<li>Element 2</li>
<li>Element 3</li>
</ul>
Ordered lists are made with numbers.
1. Element
2. Element
3. Element
<ol>
<li>Element</li>
<li>Element</li>
<li>Element</li>
</ol>
You can make sublists by using indentation with spaces. Any consistent amount of spaces is fine.
- Element 1
- Element 2
- Element 3
- Element 4
<ul>
<li>Element 1</li>
<ul>
<li>Element 2</li>
<li>Element 3</li>
</ul>
<li>Element 4</li>
</ul>
List types can be freely mixed.
1. Element
- 1
- 2
2. Element
<ol>
<li>Element</li>
<ul>
<li>1</li>
<li>2</li>
</ul>
<li>Element</li>
</ol>
Tables currently only support formatted text.
Headers are separated from the rest of the table with a row of cells containing only dashes - and spaces.
| Head2 | 2Head |
| ----- | ----- |
| text | text2 |
<table>
<tr>
<th>Head2</th>
<th>2Head</th>
</tr>
<tr>
<td>text</td>
<td>text2</td>
</tr>
</table>
Head2 | 2Head |
---|---|
text | text2 |
| a | b |
| c | d |
<table>
<tr>
<td>a</td>
<td>b</td>
</tr>
<tr>
<td>c</td>
<td>d</td>
</tr>
</table>
a | b |
c | d |
Collapsibles are special containers that can be opened to reveal hidden content. PaML allows for creation of simple HTML collapsibles that do not need any JavaScript to work. Collapsibles are stored in "collapsible boxes" that are divs holding collapsibles of the same type together.
Collapsibles are started with a >, a letter indicating the type ("f" - full, "l" - left or "r" - right) an optional desired collapsible icon and the collapsible's name e.x. >f➤ JavaScript for a collapsible with an icon and >r Python without one.
Any content within a collapsible should be indented with any consistent amount of spaces.
>l➤ irssi

```/* Auto connect */ /** Connects, small comment **/
server add -ssl -auto -network {network} {link} {port}
'''
```/* Auto identify */
/network add -autosendcmd "/msg nickserv identify {password} ;wait 2000" {network}
'''
<div class="collapsible-box-half-left">
<details>
<summary class="header"><span class="icon">➤</span> irssi</summary>
<div class="entry">
<img alt="alt text" src="./image.png" />
</div>
<div class="entry">
<div class="line-code-box">
<div class="line-code-comment">Auto connect</div>
<div class="line-code-small-comment">Connects, small comment</div>
<code class="line-code">server add -ssl -auto -network {network} {link} {port}</code>
</div>
</div>
<div class="entry">
<div class="line-code-box">
<div class="line-code-comment">Auto identify</div>
<code class="line-code">/network add -autosendcmd "/msg nickserv identify {password} ;wait 2000" {network}</code>
</div>
</div>
</details>
</div>
server add -ssl -auto -network {network} {link} {port}
/network add -autosendcmd "/msg nickserv identify {password} ;wait 2000" {network}
>r➤ irssi

```/* Auto connect */ /** Connects, small comment **/
server add -ssl -auto -network {network} {link} {port}
'''
```/* Auto identify */
/network add -autosendcmd "/msg nickserv identify {password} ;wait 2000" {network}
'''
<div class="collapsible-box-half-right">
<details>
<summary class="header"><span class="icon">➤</span> irssi</summary>
<div class="entry">
<img alt="alt text" src="./image.png" />
</div>
<div class="entry">
<div class="line-code-box">
<div class="line-code-comment">Auto connect</div>
<div class="line-code-small-comment">Connects, small comment</div>
<code class="line-code">server add -ssl -auto -network {network} {link} {port}</code>
</div>
</div>
<div class="entry">
<div class="line-code-box">
<div class="line-code-comment">Auto identify</div>
<code class="line-code">/network add -autosendcmd "/msg nickserv identify {password} ;wait 2000" {network}</code>
</div>
</div>
</details>
</div>
server add -ssl -auto -network {network} {link} {port}
/network add -autosendcmd "/msg nickserv identify {password} ;wait 2000" {network}
>f➤ Python
```/* break vs continue *//**Small block code comment **/
for x in "abcd":
if x == "c":
break
print(x) # a, b
for x in "abcd":
if x == "c":
continue
print(x) # a, b, d
'''
<div class="collapsible-box-full">
<details>
<summary class="header"><span class="icon">➤</span> Python</summary>
<div class="entry">
<div class="block-code-box">
<div class="block-code-comment">break vs continue</div>
<div class="block-code-small-comment">Small block code comment</div>
<code class="block-code">
<pre>for x in "abcd":
if x == "c":
break
print(x) # a, b
for x in "abcd":
if x == "c":
continue
print(x) # a, b, d</pre>
</code>
</div>
</div>
</details>
</div>
for x in "abcd":
if x == "c":
break
print(x) # a, b
for x in "abcd":
if x == "c":
continue
print(x) # a, b, d
>r Python
>r pathlib
{
is a fantastic library
}
<div class="collapsible-box-half-right">
<details>
<summary class="header">Python</summary>
<details>
<summary class="header">pathlib</summary>
<div class="entry">
<div class="paragraph">
<p>is a fantastic library</p>
</div>
</div>
</details>
</details>
</div>
is a fantastic library
Commands are special objects designed mainly (but not exclusively) to be used inside collapsibles (e.x. for cheat sheets of key shortcuts). They consist of a command and optional comments of two sizes.
/Ctrl + E /* Clear the screen */ /** Small comment **/
<div class="command-box">
<span class="command">Ctrl + E</span>
<span class="same-line-comment">Clear the screen</span>
<div class="small-comment">Small comment</div>
</div>
PaML provides the option to add raw HTML straight to the final doc. Open the raw HTML block with a < on a new line and end the block with a > on a new line.
<
<h1>U WANT TO DO IT RAW</h1>
>
<h1>U WANT TO DO IT RAW</h1>