<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:base="https://example.com/">
  <title>Nulite starter for Eleventy</title>
  <subtitle></subtitle>
  <link href="rss.xml" rel="self" />
  <link href="https://example.com/" />
  <updated>
    2023-10-12T10:03:36Z
  </updated>
  <id>https://example.com/</id>
  <author>
    <name>Your Name Here</name>
  </author>
  <entry>
    <title>Sample article</title>
    <link href="/sample-article/" />
    <updated>2023-10-12T10:03:36Z</updated>
    <id>/sample-article/</id>
    <content xml:lang="" type="html">
      <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean egestas placerat sapien eget facilisis. Vestibulum nisi diam, sagittis quis commodo eu, rhoncus et velit. Etiam et tellus interdum, varius ligula id, consectetur magna. Maecenas non orci nec elit viverra porta. Mauris condimentum arcu id orci tristique porttitor. Proin tincidunt ornare lacinia. Nunc facilisis, magna ut bibendum tristique, risus ligula pretium justo, vel consequat arcu ipsum ac nulla. Donec blandit rutrum lorem, mollis varius augue scelerisque at. Vivamus eget facilisis quam, id aliquam arcu.</p>
<p>Morbi et faucibus metus, ac facilisis quam. Ut sollicitudin venenatis velit, vitae facilisis arcu lobortis accumsan. Nam non porttitor diam. Maecenas lectus arcu, fringilla sed elementum nec, sodales id lacus. Suspendisse ultricies magna eget arcu fringilla vulputate. Vestibulum erat ligula, ultricies sed magna nec, scelerisque posuere est. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed at nisi consectetur tortor rhoncus tempor et eu dolor.</p>
<p>Nulla est ipsum, porta sed libero ut, tristique consectetur metus. Maecenas semper vulputate ex, a mattis nunc viverra ut. Morbi consectetur mi ex, vel tincidunt dolor vulputate vitae. Fusce turpis enim, consectetur a felis ut, gravida tincidunt erat. Duis ac faucibus neque. Vestibulum hendrerit, turpis non efficitur dapibus, ligula mauris elementum eros, nec commodo dui dui non est. Maecenas metus arcu, dapibus sit amet mauris id, feugiat luctus velit. Aenean feugiat mauris sed tellus blandit sodales. Nulla sed risus nec mauris posuere efficitur. Maecenas commodo blandit iaculis. Mauris tellus nulla, efficitur eu dolor sit amet, commodo aliquet est.</p>
<p>Pellentesque ac faucibus nisl, vel iaculis orci. In nec tortor aliquet ipsum condimentum bibendum ut a mauris. Nullam malesuada ligula eu nulla tempor mollis. Morbi ultricies purus eu lacus sodales rhoncus. Integer convallis eros nibh, a sollicitudin lorem maximus eget. Vivamus ut nisi felis. Duis leo metus, pretium vel metus vitae, imperdiet viverra mauris. Sed vulputate ligula tellus, ac dictum sem aliquam id. Phasellus facilisis est ac nisl scelerisque, eu auctor metus aliquam. Aenean nec diam orci. Nulla vehicula placerat porttitor. Praesent sed nulla rutrum, viverra neque vel, eleifend orci. Nullam quis ante vitae nisl eleifend faucibus sed eu quam.</p>
<p>Duis quis ornare tellus, vel eleifend enim. Nulla nec efficitur enim, non sagittis dolor. In hac habitasse platea dictumst. Sed nec imperdiet magna, ac vestibulum augue. Donec facilisis diam augue, sit amet imperdiet justo venenatis tincidunt. Nulla consectetur ullamcorper maximus. Vestibulum suscipit vitae ligula ut finibus. Phasellus cursus dolor eu dignissim dignissim. Duis vulputate at turpis scelerisque tincidunt. Morbi suscipit hendrerit eros eget efficitur.</p>

    </content>
  </entry>
  <entry>
    <title>Markdown test page</title>
    <link href="/markdown-test/" />
    <updated>2023-10-12T10:03:36Z</updated>
    <id>/markdown-test/</id>
    <content xml:lang="" type="html">
      <h2>Overview</h2>
<h3>Philosophy</h3>
<p>Markdown is intended to be as easy-to-read and easy-to-write as is feasible.</p>
<p>Readability, however, is emphasized above all else. A Markdown-formatted
document should be publishable as-is, as plain text, without looking
like it's been marked up with tags or formatting instructions. While
Markdown's syntax has been influenced by several existing text-to-HTML
filters -- including <a href="http://docutils.sourceforge.net/mirror/setext.html">Setext</a>, <a href="http://www.aaronsw.com/2002/atx/">atx</a>, <a href="http://textism.com/tools/textile/">Textile</a>, <a href="http://docutils.sourceforge.net/rst.html">reStructuredText</a>,
<a href="http://www.triptico.com/software/grutatxt.html">Grutatext</a>, and <a href="http://ettext.taint.org/doc/">EtText</a> -- the single biggest source of
inspiration for Markdown's syntax is the format of plain text email.</p>
<h2>Block Elements</h2>
<h3>Paragraphs and Line Breaks</h3>
<p>A paragraph is simply one or more consecutive lines of text, separated
by one or more blank lines. (A blank line is any line that looks like a
blank line -- a line containing nothing but spaces or tabs is considered
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
<p>The implication of the &quot;one or more consecutive lines of text&quot; rule is
that Markdown supports &quot;hard-wrapped&quot; text paragraphs. This differs
significantly from most other text-to-HTML formatters (including Movable
Type's &quot;Convert Line Breaks&quot; option) which translate every line break
character in a paragraph into a <code>&lt;br /&gt;</code> tag.</p>
<p>When you <em>do</em> want to insert a <code>&lt;br /&gt;</code> break tag using Markdown, you
end a line with two or more spaces, then type return.</p>
<h3>Headers</h3>
<p>Markdown supports two styles of headers, [Setext] [1] and [atx] [2].</p>
<p>Optionally, you may &quot;close&quot; atx-style headers. This is purely
cosmetic -- you can use this if you think it looks better. The
closing hashes don't even need to match the number of hashes
used to open the header. (The number of opening hashes
determines the header level.)</p>
<h3>Blockquotes</h3>
<p>Markdown uses email-style <code>&gt;</code> characters for blockquoting. If you're
familiar with quoting passages of text in an email message, then you
know how to create a blockquote in Markdown. It looks best if you hard
wrap the text and put a <code>&gt;</code> before every line:</p>
<blockquote>
<p>This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.</p>
<p>Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
id sem consectetuer libero luctus adipiscing.</p>
</blockquote>
<p>Markdown allows you to be lazy and only put the <code>&gt;</code> before the first
line of a hard-wrapped paragraph:</p>
<blockquote>
<p>This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.</p>
</blockquote>
<blockquote>
<p>Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
id sem consectetuer libero luctus adipiscing.</p>
</blockquote>
<p>Blockquotes can be nested (i.e. a blockquote-in-a-blockquote) by
adding additional levels of <code>&gt;</code>:</p>
<blockquote>
<p>This is the first level of quoting.</p>
<blockquote>
<p>This is nested blockquote.</p>
</blockquote>
<p>Back to the first level.</p>
</blockquote>
<p>Blockquotes can contain other Markdown elements, including headers, lists,
and code blocks:</p>
<blockquote>
<h2>This is a header.</h2>
<ol>
<li>This is the first list item.</li>
<li>This is the second list item.</li>
</ol>
<p>Here's some example code:</p>
<p>return shell_exec(&quot;echo $input | $markdown_script&quot;);</p>
</blockquote>
<p>Any decent text editor should make email-style quoting easy. For
example, with BBEdit, you can make a selection and choose Increase
Quote Level from the Text menu.</p>
<h3>Lists</h3>
<p>Markdown supports ordered (numbered) and unordered (bulleted) lists.</p>
<p>Unordered lists use asterisks, pluses, and hyphens -- interchangably
-- as list markers:</p>
<ul>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
</ul>
<p>is equivalent to:</p>
<ul>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
</ul>
<p>and:</p>
<ul>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
</ul>
<p>Ordered lists use numbers followed by periods:</p>
<ol>
<li>Bird</li>
<li>McHale</li>
<li>Parish</li>
</ol>
<p>It's important to note that the actual numbers you use to mark the
list have no effect on the HTML output Markdown produces. The HTML
Markdown produces from the above list is:</p>
<p>If you instead wrote the list in Markdown like this:</p>
<ol>
<li>Bird</li>
<li>McHale</li>
<li>Parish</li>
</ol>
<p>or even:</p>
<ol start="3">
<li>Bird</li>
<li>McHale</li>
<li>Parish</li>
</ol>
<p>you'd get the exact same HTML output. The point is, if you want to,
you can use ordinal numbers in your ordered Markdown lists, so that
the numbers in your source match the numbers in your published HTML.
But if you want to be lazy, you don't have to.</p>
<p>To make lists look nice, you can wrap items with hanging indents:</p>
<ul>
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
viverra nec, fringilla in, laoreet vitae, risus.</li>
<li>Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
Suspendisse id sem consectetuer libero luctus adipiscing.</li>
</ul>
<p>But if you want to be lazy, you don't have to:</p>
<ul>
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
viverra nec, fringilla in, laoreet vitae, risus.</li>
<li>Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
Suspendisse id sem consectetuer libero luctus adipiscing.</li>
</ul>
<p>List items may consist of multiple paragraphs. Each subsequent
paragraph in a list item must be indented by either 4 spaces
or one tab:</p>
<ol>
<li>
<p>This is a list item with two paragraphs. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit. Aliquam hendrerit
mi posuere lectus.</p>
<p>Vestibulum enim wisi, viverra nec, fringilla in, laoreet
vitae, risus. Donec sit amet nisl. Aliquam semper ipsum
sit amet velit.</p>
</li>
<li>
<p>Suspendisse id sem consectetuer libero luctus adipiscing.</p>
</li>
</ol>
<p>It looks nice if you indent every line of the subsequent
paragraphs, but here again, Markdown will allow you to be
lazy:</p>
<ul>
<li>
<p>This is a list item with two paragraphs.</p>
<p>This is the second paragraph in the list item. You're</p>
<p>only required to indent the first line. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit.</p>
</li>
<li>
<p>Another item in the same list.</p>
</li>
</ul>
<p>To put a blockquote within a list item, the blockquote's <code>&gt;</code>
delimiters need to be indented:</p>
<ul>
<li>
<p>A list item with a blockquote:</p>
<blockquote>
<p>This is a blockquote
inside a list item.</p>
</blockquote>
</li>
</ul>
<p>To put a code block within a list item, the code block needs
to be indented <em>twice</em> -- 8 spaces or two tabs:</p>
<ul>
<li>A list item with a code block:</li>
</ul>
<pre><code class="language-html">&lt;code goes here>&lt;/code></code></pre>
<h3>Code Blocks</h3>
<p>Pre-formatted code blocks are used for writing about programming or
markup source code. Rather than forming normal paragraphs, the lines
of a code block are interpreted literally. Markdown wraps a code block
in both <code>&lt;pre&gt;</code> and <code>&lt;code&gt;</code> tags.</p>
<p>To produce a code block in Markdown, simply indent every line of the
block by at least 4 spaces or 1 tab.</p>
<p>This is a normal paragraph:</p>
<pre><code>This is a code block.</code></pre>
<p>Here is an example of Javascript</p>
<pre><code class="language-Javascript">function helloWorld() {
  console.log("Hello World");
}</code></pre>
<p>A code block continues until it reaches a line that is not indented
(or the end of the article).</p>
<p>Regular Markdown syntax is not processed within code blocks. E.g.,
asterisks are just literal asterisks within a code block. This means
it's also easy to use Markdown to write about Markdown's own syntax.</p>
<pre><code>tell application "Foo"
    beep
end tell</code></pre>
<h2>Span Elements</h2>
<h3>Links</h3>
<p>Markdown supports two style of links: <em>inline</em> and <em>reference</em>.</p>
<p>In both styles, the link text is delimited by [square brackets].</p>
<p>To create an inline link, use a set of regular parentheses immediately
after the link text's closing square bracket. Inside the parentheses,
put the URL where you want the link to point, along with an <em>optional</em>
title for the link, surrounded in quotes. For example:</p>
<p>This is <a href="http://example.com/">an example</a> inline link.</p>
<p><a href="http://example.net/">This link</a> has no title attribute.</p>
<h3>Emphasis</h3>
<p>Markdown treats asterisks (<code>*</code>) and underscores (<code>_</code>) as indicators of
emphasis. Text wrapped with one <code>*</code> or <code>_</code> will be wrapped with an
HTML <code>&lt;em&gt;</code> tag; double <code>*</code>'s or <code>_</code>'s will be wrapped with an HTML
<code>&lt;strong&gt;</code> tag. E.g., this input:</p>
<p><em>single asterisks</em></p>
<p><em>single underscores</em></p>
<p><strong>double asterisks</strong></p>
<p><strong>double underscores</strong></p>
<h3>Code</h3>
<p>To indicate a span of code, wrap it with backtick quotes (<code>`</code>).
Unlike a pre-formatted code block, a code span indicates code within a
normal paragraph. For example:</p>
<p>Use the <code>printf()</code> function.</p>

    </content>
  </entry>
  <entry>
    <title>About me</title>
    <link href="/about/" />
    <updated>2023-10-12T10:03:36Z</updated>
    <id>/about/</id>
    <content xml:lang="" type="html">
      <p>Nulite is a simple, elegant, minimalistic stater project for <a href="https://www.11ty.dev/">Eleventy</a> to help you create a simple blog with focus on performance and simplicity.</p>
<p>This project is strongly influenced by <a href="https://stephango.com/">Steph Ango's blog</a> (one of the creators of Obsidian).</p>
<p>If you like the project feel free to leave a star ⭐ You can also send me issues that you can find or proposals for improvement in PRs.</p>
<p>This project is under the domain of <a href="https://codingpotions.com">CodingPotions, a Spanish programming blog</a>.</p>
<h2>Features</h2>
<ul>
<li>🧐 Simple. Elegant, minimalist design, clear and easy to read.</li>
<li>📈 Good performance. Inline styles and the minimum amount of JS to make the page load as fast as possible.</li>
<li>🌙 Support for light/dark mode. Respects user tastes and allows toggle between both saving preferences.</li>
<li>📡 RSS. Bring back old days.</li>
<li>🎨 Easily customizable. Thanks to the CSS variables system you can change colors and fonts in one place.</li>
<li>🖍️ Syntax coloring. If you write blocks of code in the articles you will have coloring, and without adding extra JS.</li>
<li>📝 Article recommendation. Each article has a tag-based recommendation system to give the user more content to read.</li>
</ul>
<h2>Getting started</h2>
<ol>
<li>Clone or fork this repo: <code>https://github.com/codingpotions/nulite</code></li>
<li><code>cd</code> into the project directory and run <code>npm install</code></li>
</ol>
<h2>Running and serving a dev build</h2>
<pre><code class="language-sh">npm run start</code></pre>
<p>Browse to <a href="http://localhost:8080">http://localhost:8080</a>.</p>
<h2>Running and serving a prod build</h2>
<pre><code class="language-sh">npm run build</code></pre>
<p>Output files are generated into the <code>_site</code> folder.</p>
<h2>Project structure</h2>
<pre><code>src/
  _includes/
    All UI partials. Inside the css folder, in the global.liquid you can change the CSS variables
  _data/
    Here you can change the site info, like the title and description
  posts/
    Each individual post in markdown files
  public/
    This folder contians statics files, copied directly into the output, like the favicon, for ecample
Configuration and build files</code></pre>

    </content>
  </entry>
</feed>

