<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
      <title>Failing Twice</title>
      <link>https://www.failingtwice.com</link>
      <description></description>
      <generator>Zola</generator>
      <language>en</language>
      <atom:link href="https://www.failingtwice.com/rss.xml" rel="self" type="application/rss+xml"/>
      <lastBuildDate>Mon, 22 Jun 2026 00:00:00 +0000</lastBuildDate>
      <item>
          <title>Lorem Ipsum: A Markdown Kitchen Sink</title>
          <pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate>
          <author>Unknown</author>
          <link>https://www.failingtwice.com/lorem-ipsum/</link>
          <guid>https://www.failingtwice.com/lorem-ipsum/</guid>
          <description xml:base="https://www.failingtwice.com/lorem-ipsum/">&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. This opening paragraph
shows &lt;strong&gt;bold text&lt;&#x2F;strong&gt;, &lt;em&gt;italic text&lt;&#x2F;em&gt;, &lt;em&gt;&lt;strong&gt;bold italic&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;, &lt;del&gt;strikethrough&lt;&#x2F;del&gt;, and
&lt;code&gt;inline code&lt;&#x2F;code&gt;. Here is an &lt;a rel=&quot;external&quot; href=&quot;https:&#x2F;&#x2F;example.com&quot;&gt;external link&lt;&#x2F;a&gt; and a
&lt;a rel=&quot;external&quot; title=&quot;Hover me&quot; href=&quot;https:&#x2F;&#x2F;example.com&quot;&gt;link with a title&lt;&#x2F;a&gt; for good measure.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;heading-level-2&quot;&gt;Heading Level 2&lt;&#x2F;h2&gt;
&lt;p&gt;Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;heading-level-3&quot;&gt;Heading Level 3&lt;&#x2F;h3&gt;
&lt;p&gt;Duis aute irure dolor in reprehenderit in voluptate velit esse cillum.&lt;&#x2F;p&gt;
&lt;h4 id=&quot;heading-level-4&quot;&gt;Heading Level 4&lt;&#x2F;h4&gt;
&lt;p&gt;Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;lists&quot;&gt;Lists&lt;&#x2F;h2&gt;
&lt;h3 id=&quot;unordered&quot;&gt;Unordered&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;First item&lt;&#x2F;li&gt;
&lt;li&gt;Second item
&lt;ul&gt;
&lt;li&gt;Nested item one&lt;&#x2F;li&gt;
&lt;li&gt;Nested item two
&lt;ul&gt;
&lt;li&gt;Deeper still&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;Third item&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h3 id=&quot;ordered&quot;&gt;Ordered&lt;&#x2F;h3&gt;
&lt;ol&gt;
&lt;li&gt;Do the first thing&lt;&#x2F;li&gt;
&lt;li&gt;Then the second thing&lt;&#x2F;li&gt;
&lt;li&gt;Finally the third thing
&lt;ol&gt;
&lt;li&gt;A nested step&lt;&#x2F;li&gt;
&lt;li&gt;Another nested step&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;h3 id=&quot;task-list&quot;&gt;Task list&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&quot;&quot; type=&quot;checkbox&quot; checked=&quot;&quot;&#x2F;&gt;
Set up the blog&lt;&#x2F;li&gt;
&lt;li&gt;&lt;input disabled=&quot;&quot; type=&quot;checkbox&quot; checked=&quot;&quot;&#x2F;&gt;
Fix the theme&lt;&#x2F;li&gt;
&lt;li&gt;&lt;input disabled=&quot;&quot; type=&quot;checkbox&quot;&#x2F;&gt;
Write a real first post&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h2 id=&quot;blockquotes&quot;&gt;Blockquotes&lt;&#x2F;h2&gt;
&lt;blockquote&gt;
&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;&#x2F;p&gt;
&lt;blockquote&gt;
&lt;p&gt;Nested blockquotes are supported too.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;p&gt;— Someone, probably&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;h2 id=&quot;code&quot;&gt;Code&lt;&#x2F;h2&gt;
&lt;p&gt;Inline code looks like &lt;code&gt;let x = 42;&lt;&#x2F;code&gt;. A fenced block with a language hint:&lt;&#x2F;p&gt;
&lt;pre&gt;&lt;code data-lang=&quot;rust&quot;&gt;fn main() {
    let names = vec![&amp;quot;alice&amp;quot;, &amp;quot;bob&amp;quot;, &amp;quot;carol&amp;quot;];
    for (i, name) in names.iter().enumerate() {
        println!(&amp;quot;{i}: {name}&amp;quot;);
    }
}
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;p&gt;And a plain block without a language:&lt;&#x2F;p&gt;
&lt;pre&gt;&lt;code&gt;$ zola build
Building site...
Done in 12ms.
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;h2 id=&quot;table&quot;&gt;Table&lt;&#x2F;h2&gt;
&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Language&lt;&#x2F;th&gt;&lt;th&gt;Typing&lt;&#x2F;th&gt;&lt;th style=&quot;text-align: right&quot;&gt;First released&lt;&#x2F;th&gt;&lt;&#x2F;tr&gt;&lt;&#x2F;thead&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;Rust&lt;&#x2F;td&gt;&lt;td&gt;Static&lt;&#x2F;td&gt;&lt;td style=&quot;text-align: right&quot;&gt;2010&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;Python&lt;&#x2F;td&gt;&lt;td&gt;Dynamic&lt;&#x2F;td&gt;&lt;td style=&quot;text-align: right&quot;&gt;1991&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;Lua&lt;&#x2F;td&gt;&lt;td&gt;Dynamic&lt;&#x2F;td&gt;&lt;td style=&quot;text-align: right&quot;&gt;1993&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;&#x2F;tbody&gt;&lt;&#x2F;table&gt;
&lt;h2 id=&quot;horizontal-rule&quot;&gt;Horizontal rule&lt;&#x2F;h2&gt;
&lt;hr &#x2F;&gt;
&lt;h2 id=&quot;image&quot;&gt;Image&lt;&#x2F;h2&gt;
&lt;p&gt;&lt;img src=&quot;https:&#x2F;&#x2F;picsum.photos&#x2F;640&#x2F;320&quot; alt=&quot;A placeholder landscape&quot; &#x2F;&gt;&lt;&#x2F;p&gt;
&lt;h2 id=&quot;footnotes&quot;&gt;Footnotes&lt;&#x2F;h2&gt;
&lt;p&gt;Here is a statement that needs a citation.&lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#note&quot;&gt;1&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt; And here is another one.&lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#second&quot;&gt;2&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;&lt;&#x2F;p&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;note&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;1&lt;&#x2F;sup&gt;
&lt;p&gt;This is the footnote text, rendered at the bottom of the page.&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;second&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;2&lt;&#x2F;sup&gt;
&lt;p&gt;Footnotes can hold &lt;code&gt;code&lt;&#x2F;code&gt;, &lt;em&gt;emphasis&lt;&#x2F;em&gt;, and &lt;a rel=&quot;external&quot; href=&quot;https:&#x2F;&#x2F;example.com&quot;&gt;links&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;h2 id=&quot;inline-html&quot;&gt;Inline HTML&lt;&#x2F;h2&gt;
&lt;p&gt;You can drop in raw HTML when Markdown is not enough, like this
&lt;abbr title=&quot;HyperText Markup Language&quot;&gt;HTML&lt;&#x2F;abbr&gt; abbreviation.&lt;&#x2F;p&gt;
</description>
      </item>
    </channel>
</rss>
