krz/orgo

Lightning fast org-mode static site generator.

clone: git clone https://gitbay.org/krz/orgo.git

v0.3.0: tests/snapshots/pipeline__core_html.snap · raw

 1---
 2source: tests/pipeline.rs
 3expression: "render_fixture(\"core.org\")"
 4---
 5<p>Intro paragraph with a bare URL <a href="https://example.com">https://example.com</a> and some <code>inline code</code>.</p>
 6<h1 id="ordered-and-checked">Ordered and checked</h1>
 7<ol>
 8<li>first item</li>
 9<li>second item with <em>emphasis</em></li>
10</ol>
11<ul>
12<li><input type="checkbox" disabled> todo item</li>
13<li><input type="checkbox" disabled checked> done item</li>
14</ul>
15<h1 id="links-and-code">Links and code</h1>
16<p>An external <a href="https://example.org">site</a> and a bare <a href="https://bare.example">https://bare.example</a>.</p>
17<pre><code class="language-rust">fn main() {
18    println!("hello");
19}</code></pre>