<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>tag &amp;mdash; Qua info</title>
    <link>https://qua.name/info/tag:tag</link>
    <description>Info and notices on the Qua instance, only relevant for users.</description>
    <pubDate>Sat, 18 Apr 2026 15:44:35 +0200</pubDate>
    <item>
      <title>Example page</title>
      <link>https://qua.name/info/example-page</link>
      <description>&lt;![CDATA[This page contains a quick reference on the rendering options as well as example on how things will be rendered on this specific instance.&#xA;&#xA;This page is based on the write.as writersguide, but it turns out #writefreely has support for a bit more than described on that page.&#xA;&#xA;Headers&#xA;&#xA;Headers are created by putting a # sign before a line:&#xA;&#xA;This is the biggest header (h1)&#xA;This is still a big header (h2)&#xA;This is a smaller header (h3)&#xA;This is the smallest header you can make (h6)&#xA;&#xA;The above will render as:&#xA;&#xA;This is the biggest header (h1)&#xA;This is still a big header (h2)&#xA;This is a smaller header (h3)&#xA;This is the smallest header you can make (h6)&#xA;&#xA;Text decorations&#xA;&#xA;Text can be decoreated inline by &#xA;This is italic&#xA;This is italic too&#xA;This is bold&#xA;This is bold, too&#xA;This is bold and italic&#xA;This is monospaced, or code&#xA;This is crossed out&#xA;Rendered as:&#xA;&#xA;This is italic&#xA;This is italic too&#xA;This is bold&#xA;This is bold, too&#xA;This is bold and italic&#xA;This is monospaced, or code&#xA;This is crossed out&#xA;&#xA;Lists&#xA;&#xA;Hello&#xA;Goodbye&#xA;  Ciao&#xA;  Au revoir&#xA;  Auf Wiedersehen &#xA;  Arrivederci&#xA;&#xA;First, this&#xA;Then that&#xA;Lastly, this&#xA;&#xA;Different lists need a line of text between them.&#xA;&#xA;First this&#xA;   Then a second thing&#xA;   Finally a third thing&#xA;And so on&#xA;&#xA;Hello&#xA;Goodbye&#xA;  Ciao&#xA;  Au revoir&#xA;  Auf Wiedersehen &#xA;  Arrivederci&#xA;&#xA;First, this&#xA;Then that&#xA;Lastly, this&#xA;&#xA;Different lists need a line of text between them.&#xA;&#xA;First this&#xA;   Then a second thing&#xA;   Finally a third thing&#xA;And so on&#xA;&#xA;Quoting &#xA;&#xA;Text can be quoted by prefixing it with   &#xA;&#xA;  This is a quote from an email or quotation from someone&#xA;&#xA;  This is a quote from an email or quotation from someone&#xA;&#xA;Linking &#xA;&#xA;Basic link:&#xA;&#xA;A user guide&#xA;&#xA;Link to an image:&#xA;&#xA;Rotterdam from above&#xA;&#xA;Basic link:&#xA;&#xA;A user guide&#xA;&#xA;Link to an image:&#xA;&#xA;Rotterdam from above&#xA;&#xA;Other constructs&#xA;&#xA;The verbatim parts in this document were entered by enclosing the blocks of text with 3 backticks (&#xA;    &#xA;A horizontal line can be made:&#xA;---&#xA;&#xA;The underlying markdown engine which is a modified version of blackfriday has support for tables, but the default css is minimal.&#xA;&#xA;Name    | Age&#xA;--------|------&#xA;Bob     | 27&#xA;Alice   | 23&#xA;&#xA;Name    | Age&#xA;--------|------&#xA;Bob     | 27&#xA;Alice   | 23&#xA;&#xA;Syntax highlighting&#xA;&#xA;The highlightjs library is used for syntax highlighting. This is automatic. The library tries to detect the language of code blocks automatically, but it&#39;s always a good idea to specify it.&#xA;&#xA;All languages available for highlightjs are supported.&#xA;&#xA;// This could have syntax highlighting if language go was installed&#xA;func getTrue() bool {&#xA;    return true&#xA;}&#xA;&#xA;This should have syntax highlighting as python is loaded by default&#xA;def actiondone(self, cr, uid, ids, context=None):&#xA;        logger.debug(&#39;Overridden mroorder.actiondone called.&#39;)&#xA;        for order in self.browse(cr, uid, ids, context=context):&#xA;            self.pool.get(&#39;stock.move&#39;).actiondone(&#xA;                cr, uid, [x.id for x in order.partsmovelines])&#xA;            self.write(cr, uid, ids, {&#39;state&#39;: &#39;done&#39;})&#xA;        return True&#xA;&#xA;Definition lists look like this:&#xA;Cat&#xA;: Fluffy animal everyone likes&#xA;&#xA;Internet&#xA;: Vector of transmission for pictures of cats&#xA;&#xA;Cat&#xA;: Fluffy animal everyone likes&#xA;&#xA;Internet&#xA;: Vector of transmission for pictures of cats&#xA;&#xA;When a # character is used #inline a #tag is created which #writefreely uses to categorize its content.&#xA;&#xA;MathJax rendering&#xA;There is a setting for each blog to enable MathJax rendering. Here are some examples:&#xA;&#xA;When $a \ne 0$, there are two solutions to $(ax^2 + bx + c = 0)$ and they are&#xA;$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$&#xA;&#xA;When $a \ne 0$, there are two solutions to $(ax^2 + bx + c = 0)$ and they are&#xA;$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$&#xA;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>This page contains a quick reference on the rendering options as well as example on how things will be rendered on this specific instance.</p>

<p>This page is based on <a href="https://guides.write.as" rel="nofollow">the write.as writersguide</a>, but it turns out <a href="/info/tag:writefreely" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">writefreely</span></a> has support for a bit more than described on that page.</p>

<h2 id="headers" id="headers">Headers</h2>

<p>Headers are created by putting a <code>#</code> sign before a line:</p>

<pre><code># This is the biggest header (h1)
## This is still a big header (h2)
### This is a smaller header (h3)
###### This is the smallest header you can make (h6)
</code></pre>

<p>The above will render as:</p>

<h1 id="this-is-the-biggest-header-h1" id="this-is-the-biggest-header-h1">This is the biggest header (h1)</h1>

<h2 id="this-is-still-a-big-header-h2" id="this-is-still-a-big-header-h2">This is still a big header (h2)</h2>

<h3 id="this-is-a-smaller-header-h3" id="this-is-a-smaller-header-h3">This is a smaller header (h3)</h3>

<h6 id="this-is-the-smallest-header-you-can-make-h6" id="this-is-the-smallest-header-you-can-make-h6">This is the smallest header you can make (h6)</h6>

<h2 id="text-decorations" id="text-decorations">Text decorations</h2>

<p>Text can be decoreated inline by</p>

<pre><code>*This is italic*
_This is italic too_
**This is bold**
__This is bold, too__
_**This is bold and italic**_
`This is monospaced, or code`
~~This is crossed out~~
</code></pre>

<p>Rendered as:</p>

<p><em>This is italic</em>
<em>This is italic too</em>
<strong>This is bold</strong>
<strong>This is bold, too</strong>
<em><strong>This is bold and italic</strong></em>
<code>This is monospaced, or code</code>
<del>This is crossed out</del></p>

<h2 id="lists" id="lists">Lists</h2>

<pre><code>* Hello
* Goodbye
  * Ciao
  * Au revoir
  * Auf Wiedersehen 
  * Arrivederci

1. First, this
2. Then that
3. Lastly, this

Different lists need a line of text between them.

1. First this
   1. Then a second thing
   1. Finally a third thing
1. And so on
</code></pre>
<ul><li>Hello</li>
<li>Goodbye
<ul><li>Ciao</li>
<li>Au revoir</li>
<li>Auf Wiedersehen</li>
<li>Arrivederci</li></ul></li></ul>
<ol><li>First, this</li>
<li>Then that</li>
<li>Lastly, this</li></ol>

<p>Different lists need a line of text between them.</p>
<ol><li>First this
<ol><li>Then a second thing</li>
<li>Finally a third thing</li></ol></li>
<li>And so on</li></ol>

<h2 id="quoting" id="quoting">Quoting</h2>

<p>Text can be quoted by prefixing it with <code>&gt;</code></p>

<pre><code>&gt; This is a quote from an email or quotation from someone
</code></pre>

<blockquote><p>This is a quote from an email or quotation from someone</p></blockquote>

<h2 id="linking" id="linking">Linking</h2>

<pre><code>Basic link:

[A user guide](https://guides.write.as)

Link to an image:

![Rotterdam from above](https://mastodon.nl/system/accounts/headers/000/081/518/original/b7efede8e55f4d71.png)
</code></pre>

<p>Basic link:</p>

<p><a href="https://guides.write.as" rel="nofollow">A user guide</a></p>

<p>Link to an image:</p>

<p><img src="https://mastodon.nl/system/accounts/headers/000/081/518/original/b7efede8e55f4d71.png" alt="Rotterdam from above"></p>

<h2 id="other-constructs" id="other-constructs">Other constructs</h2>

<pre><code>The verbatim parts in this document were entered by enclosing the blocks of text with 3 _backticks_ (```) each on their own line.
</code></pre>

<p>A horizontal line can be made:</p>

<pre><code>---
</code></pre>

<p>The underlying <a href="https://github.com/writeas/saturday" rel="nofollow">markdown engine</a> which is a modified version of <a href="https://github.com/russross/blackfriday" rel="nofollow">blackfriday</a> has support for tables, but the default css is minimal.</p>

<pre><code>Name    | Age
--------|------
Bob     | 27
Alice   | 23
</code></pre>

<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>

<tbody>
<tr>
<td>Bob</td>
<td>27</td>
</tr>

<tr>
<td>Alice</td>
<td>23</td>
</tr>
</tbody>
</table>

<h2 id="syntax-highlighting" id="syntax-highlighting">Syntax highlighting</h2>

<p>The highlightjs library is used for syntax highlighting. This is automatic. The library tries to detect the language of code blocks automatically, but it&#39;s always a good idea to specify it.</p>

<p>All languages available for highlightjs are supported.</p>

<pre><code class="language-go">// This could have syntax highlighting if language go was installed
func getTrue() bool {
    return true
}
</code></pre>

<pre><code class="language-python"># This should have syntax highlighting as python is loaded by default
def action_done(self, cr, uid, ids, context=None):
        logger.debug(&#39;Overridden mro_order.action_done called.&#39;)
        for order in self.browse(cr, uid, ids, context=context):
            self.pool.get(&#39;stock.move&#39;).action_done(
                cr, uid, [x.id for x in order.parts_move_lines])
            self.write(cr, uid, ids, {&#39;state&#39;: &#39;done&#39;})
        return True

</code></pre>

<p>Definition lists look like this:</p>

<pre><code>Cat
: Fluffy animal everyone likes

Internet
: Vector of transmission for pictures of cats
</code></pre>

<p>Cat
: Fluffy animal everyone likes</p>

<p>Internet
: Vector of transmission for pictures of cats</p>

<p>When a <code>#</code> character is used <a href="/info/tag:inline" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">inline</span></a> a <a href="/info/tag:tag" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">tag</span></a> is created which <a href="/info/tag:writefreely" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">writefreely</span></a> uses to categorize its content.</p>

<h2 id="mathjax-rendering" id="mathjax-rendering">MathJax rendering</h2>

<p>There is a setting for each blog to enable MathJax rendering. Here are some examples:</p>

<pre><code>When $a \ne 0$, there are two solutions to $(ax^2 + bx + c = 0)$ and they are
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
</code></pre>

<p>When $a \ne 0$, there are two solutions to $(ax^2 + bx + c = 0)$ and they are
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$</p>
]]></content:encoded>
      <guid>https://qua.name/info/example-page</guid>
      <pubDate>Thu, 15 Nov 2018 13:57:46 +0100</pubDate>
    </item>
  </channel>
</rss>