"{\n    \"version\": \"https://jsonfeed.org/version/1\",\n    \"title\": \"Blog - Cecilio Silva Monteiro\",\n    \"home_page_url\": \"https://www.ceciliosilva.me/feed\",\n    \"feed_url\": \"https://www.ceciliosilva.me/json\",\n    \"description\": \"This is the feed of my personal blog\",\n    \"icon\": \"https://www.ceciliosilva.me/images/bg.webp\",\n    \"author\": {\n        \"name\": \"Cecilio Silva Monteiro\",\n        \"url\": \"https://www.ceciliosilva.me/about\"\n    },\n    \"items\": [\n        {\n            \"id\": \"https://www.ceciliosilva.me/blog/test-blog-post-2\",\n            \"content_html\": \"<h1>Markdown: Syntax</h1>\\n<ul id='ProjectSubmenu'>\\n    <li><a href='/projects/markdown/' title='Markdown Project Page'>Main</a></li>\\n    <li><a href='/projects/markdown/basics' title='Markdown Basics'>Basics</a></li>\\n    <li><a class='selected' title='Markdown Syntax Documentation'>Syntax</a></li>\\n    <li><a href='/projects/markdown/license' title='Pricing and License Information'>License</a></li>\\n    <li><a href='/projects/markdown/dingus' title='Online Markdown Web Form'>Dingus</a></li>\\n</ul>\\n\\n\\n<ul>\\n<li><a href=\\\"#overview\\\">Overview</a><ul>\\n<li><a href=\\\"#philosophy\\\">Philosophy</a></li>\\n<li><a href=\\\"#html\\\">Inline HTML</a></li>\\n<li><a href=\\\"#autoescape\\\">Automatic Escaping for Special Characters</a></li>\\n</ul>\\n</li>\\n<li><a href=\\\"#block\\\">Block Elements</a><ul>\\n<li><a href=\\\"#p\\\">Paragraphs and Line Breaks</a></li>\\n<li><a href=\\\"#header\\\">Headers</a></li>\\n<li><a href=\\\"#blockquote\\\">Blockquotes</a></li>\\n<li><a href=\\\"#list\\\">Lists</a></li>\\n<li><a href=\\\"#precode\\\">Code Blocks</a></li>\\n<li><a href=\\\"#hr\\\">Horizontal Rules</a></li>\\n</ul>\\n</li>\\n<li><a href=\\\"#span\\\">Span Elements</a><ul>\\n<li><a href=\\\"#link\\\">Links</a></li>\\n<li><a href=\\\"#em\\\">Emphasis</a></li>\\n<li><a href=\\\"#code\\\">Code</a></li>\\n<li><a href=\\\"#img\\\">Images</a></li>\\n</ul>\\n</li>\\n<li><a href=\\\"#misc\\\">Miscellaneous</a><ul>\\n<li><a href=\\\"#backslash\\\">Backslash Escapes</a></li>\\n<li><a href=\\\"#autolink\\\">Automatic Links</a></li>\\n</ul>\\n</li>\\n</ul>\\n<p><strong>Note:</strong> This document is itself written using Markdown; you\\ncan <a href=\\\"/projects/markdown/syntax.text\\\">see the source for it by adding &#39;.text&#39; to the URL</a>.</p>\\n<hr>\\n<h2 id='overview'>Overview</h2>\\n\\n<h3 id='philosophy'>Philosophy</h3>\\n\\n<p>Markdown is intended to be as easy-to-read and easy-to-write as is feasible.</p>\\n<p>Readability, however, is emphasized above all else. A Markdown-formatted\\ndocument should be publishable as-is, as plain text, without looking\\nlike it&#39;s been marked up with tags or formatting instructions. While\\nMarkdown&#39;s syntax has been influenced by several existing text-to-HTML\\nfilters -- including [Setext] <a href=\\\"http://docutils.sourceforge.net/mirror/setext.html\\\">1</a>, [atx] <a href=\\\"http://www.aaronsw.com/2002/atx/\\\">2</a>, [Textile] <a href=\\\"http://textism.com/tools/textile/\\\">3</a>, [reStructuredText] <a href=\\\"http://docutils.sourceforge.net/rst.html\\\">4</a>,\\n[Grutatext] <a href=\\\"http://www.triptico.com/software/grutatxt.html\\\">5</a>, and [EtText] <a href=\\\"http://ettext.taint.org/doc/\\\">6</a> -- the single biggest source of\\ninspiration for Markdown&#39;s syntax is the format of plain text email.</p>\\n<p>To this end, Markdown&#39;s syntax is comprised entirely of punctuation\\ncharacters, which punctuation characters have been carefully chosen so\\nas to look like what they mean. E.g., asterisks around a word actually\\nlook like *emphasis*. Markdown lists look like, well, lists. Even\\nblockquotes look like quoted passages of text, assuming you&#39;ve ever\\nused email.</p>\\n<h3 id='html'>Inline HTML</h3>\\n\\n<p>Markdown&#39;s syntax is intended for one purpose: to be used as a\\nformat for <em>writing</em> for the web.</p>\\n<p>Markdown is not a replacement for HTML, or even close to it. Its\\nsyntax is very small, corresponding only to a very small subset of\\nHTML tags. The idea is <em>not</em> to create a syntax that makes it easier\\nto insert HTML tags. In my opinion, HTML tags are already easy to\\ninsert. The idea for Markdown is to make it easy to read, write, and\\nedit prose. HTML is a <em>publishing</em> format; Markdown is a <em>writing</em>\\nformat. Thus, Markdown&#39;s formatting syntax only addresses issues that\\ncan be conveyed in plain text.</p>\\n<p>For any markup that is not covered by Markdown&#39;s syntax, you simply\\nuse HTML itself. There&#39;s no need to preface it or delimit it to\\nindicate that you&#39;re switching from Markdown to HTML; you just use\\nthe tags.</p>\\n<p>The only restrictions are that block-level HTML elements -- e.g. <code>&lt;div&gt;</code>,\\n<code>&lt;table&gt;</code>, <code>&lt;pre&gt;</code>, <code>&lt;p&gt;</code>, etc. -- must be separated from surrounding\\ncontent by blank lines, and the start and end tags of the block should\\nnot be indented with tabs or spaces. Markdown is smart enough not\\nto add extra (unwanted) <code>&lt;p&gt;</code> tags around HTML block-level tags.</p>\\n<p>For example, to add an HTML table to a Markdown article:</p>\\n<pre><code>This is a regular paragraph.\\n\\n&lt;table&gt;\\n    &lt;tr&gt;\\n        &lt;td&gt;Foo&lt;/td&gt;\\n    &lt;/tr&gt;\\n&lt;/table&gt;\\n\\nThis is another regular paragraph.\\n</code></pre>\\n<p>Note that Markdown formatting syntax is not processed within block-level\\nHTML tags. E.g., you can&#39;t use Markdown-style <code>*emphasis*</code> inside an\\nHTML block.</p>\\n<p>Span-level HTML tags -- e.g. <code>&lt;span&gt;</code>, <code>&lt;cite&gt;</code>, or <code>&lt;del&gt;</code> -- can be\\nused anywhere in a Markdown paragraph, list item, or header. If you\\nwant, you can even use HTML tags instead of Markdown formatting; e.g. if\\nyou&#39;d prefer to use HTML <code>&lt;a&gt;</code> or <code>&lt;img&gt;</code> tags instead of Markdown&#39;s\\nlink or image syntax, go right ahead.</p>\\n<p>Unlike block-level HTML tags, Markdown syntax <em>is</em> processed within\\nspan-level tags.</p>\\n<h3 id='autoescape'>Automatic Escaping for Special Characters</h3>\\n\\n<p>In HTML, there are two characters that demand special treatment: <code>&lt;</code>\\nand <code>&amp;</code>. Left angle brackets are used to start tags; ampersands are\\nused to denote HTML entities. If you want to use them as literal\\ncharacters, you must escape them as entities, e.g. <code>&amp;lt;</code>, and\\n<code>&amp;amp;</code>.</p>\\n<p>Ampersands in particular are bedeviling for web writers. If you want to\\nwrite about &#39;AT&amp;T&#39;, you need to write &#39;<code>AT&amp;amp;T</code>&#39;. You even need to\\nescape ampersands within URLs. Thus, if you want to link to:</p>\\n<pre><code>http://images.google.com/images?num=30&amp;q=larry+bird\\n</code></pre>\\n<p>you need to encode the URL as:</p>\\n<pre><code>http://images.google.com/images?num=30&amp;amp;q=larry+bird\\n</code></pre>\\n<p>in your anchor tag <code>href</code> attribute. Needless to say, this is easy to\\nforget, and is probably the single most common source of HTML validation\\nerrors in otherwise well-marked-up web sites.</p>\\n<p>Markdown allows you to use these characters naturally, taking care of\\nall the necessary escaping for you. If you use an ampersand as part of\\nan HTML entity, it remains unchanged; otherwise it will be translated\\ninto <code>&amp;amp;</code>.</p>\\n<p>So, if you want to include a copyright symbol in your article, you can write:</p>\\n<pre><code>&amp;copy;\\n</code></pre>\\n<p>and Markdown will leave it alone. But if you write:</p>\\n<pre><code>AT&amp;T\\n</code></pre>\\n<p>Markdown will translate it to:</p>\\n<pre><code>AT&amp;amp;T\\n</code></pre>\\n<p>Similarly, because Markdown supports <a href=\\\"#html\\\">inline HTML</a>, if you use\\nangle brackets as delimiters for HTML tags, Markdown will treat them as\\nsuch. But if you write:</p>\\n<pre><code>4 &lt; 5\\n</code></pre>\\n<p>Markdown will translate it to:</p>\\n<pre><code>4 &amp;lt; 5\\n</code></pre>\\n<p>However, inside Markdown code spans and blocks, angle brackets and\\nampersands are <em>always</em> encoded automatically. This makes it easy to use\\nMarkdown to write about HTML code. (As opposed to raw HTML, which is a\\nterrible format for writing about HTML syntax, because every single <code>&lt;</code>\\nand <code>&amp;</code> in your example code needs to be escaped.)</p>\\n<hr>\\n<h2 id='block'>Block Elements</h2>\\n\\n\\n<h3 id='p'>Paragraphs and Line Breaks</h3>\\n\\n<p>A paragraph is simply one or more consecutive lines of text, separated\\nby one or more blank lines. (A blank line is any line that looks like a\\nblank line -- a line containing nothing but spaces or tabs is considered\\nblank.) Normal paragraphs should not be indented with spaces or tabs.</p>\\n<p>The implication of the &#39;one or more consecutive lines of text&#39; rule is\\nthat Markdown supports &#39;hard-wrapped&#39; text paragraphs. This differs\\nsignificantly from most other text-to-HTML formatters (including Movable\\nType&#39;s &#39;Convert Line Breaks&#39; option) which translate every line break\\ncharacter in a paragraph into a <code>&lt;br /&gt;</code> tag.</p>\\n<p>When you <em>do</em> want to insert a <code>&lt;br /&gt;</code> break tag using Markdown, you\\nend a line with two or more spaces, then type return.</p>\\n<p>Yes, this takes a tad more effort to create a <code>&lt;br /&gt;</code>, but a simplistic\\n&#39;every line break is a <code>&lt;br /&gt;</code>&#39; rule wouldn&#39;t work for Markdown.\\nMarkdown&#39;s email-style <a href=\\\"#blockquote\\\">blockquoting</a> and multi-paragraph <a href=\\\"#list\\\">list items</a>\\nwork best -- and look better -- when you format them with hard breaks.</p>\\n<h3 id='header'>Headers</h3>\\n\\n<p>Markdown supports two styles of headers, [Setext] <a href=\\\"http://docutils.sourceforge.net/mirror/setext.html\\\">1</a> and [atx] <a href=\\\"http://www.aaronsw.com/2002/atx/\\\">2</a>.</p>\\n<p>Setext-style headers are &#39;underlined&#39; using equal signs (for first-level\\nheaders) and dashes (for second-level headers). For example:</p>\\n<pre><code>This is an H1\\n=============\\n\\nThis is an H2\\n-------------\\n</code></pre>\\n<p>Any number of underlining <code>=</code>&#39;s or <code>-</code>&#39;s will work.</p>\\n<p>Atx-style headers use 1-6 hash characters at the start of the line,\\ncorresponding to header levels 1-6. For example:</p>\\n<pre><code># This is an H1\\n\\n## This is an H2\\n\\n###### This is an H6\\n</code></pre>\\n<p>Optionally, you may &#39;close&#39; atx-style headers. This is purely\\ncosmetic -- you can use this if you think it looks better. The\\nclosing hashes don&#39;t even need to match the number of hashes\\nused to open the header. (The number of opening hashes\\ndetermines the header level.) :</p>\\n<pre><code># This is an H1 #\\n\\n## This is an H2 ##\\n\\n### This is an H3 ######\\n</code></pre>\\n<h3 id='blockquote'>Blockquotes</h3>\\n\\n<p>Markdown uses email-style <code>&gt;</code> characters for blockquoting. If you&#39;re\\nfamiliar with quoting passages of text in an email message, then you\\nknow how to create a blockquote in Markdown. It looks best if you hard\\nwrap the text and put a <code>&gt;</code> before every line:</p>\\n<pre><code>&gt; This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,\\n&gt; consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.\\n&gt; Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.\\n&gt; \\n&gt; Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse\\n&gt; id sem consectetuer libero luctus adipiscing.\\n</code></pre>\\n<p>Markdown allows you to be lazy and only put the <code>&gt;</code> before the first\\nline of a hard-wrapped paragraph:</p>\\n<pre><code>&gt; This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,\\nconsectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.\\nVestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.\\n\\n&gt; Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse\\nid sem consectetuer libero luctus adipiscing.\\n</code></pre>\\n<p>Blockquotes can be nested (i.e. a blockquote-in-a-blockquote) by\\nadding additional levels of <code>&gt;</code>:</p>\\n<pre><code>&gt; This is the first level of quoting.\\n&gt;\\n&gt; &gt; This is nested blockquote.\\n&gt;\\n&gt; Back to the first level.\\n</code></pre>\\n<p>Blockquotes can contain other Markdown elements, including headers, lists,\\nand code blocks:</p>\\n<pre><code>&gt; ## This is a header.\\n&gt; \\n&gt; 1.   This is the first list item.\\n&gt; 2.   This is the second list item.\\n&gt; \\n&gt; Here&#39;s some example code:\\n&gt; \\n&gt;     return shell_exec(&#39;echo $input | $markdown_script&#39;);\\n</code></pre>\\n<p>Any decent text editor should make email-style quoting easy. For\\nexample, with BBEdit, you can make a selection and choose Increase\\nQuote Level from the Text menu.</p>\\n<h3 id='list'>Lists</h3>\\n\\n<p>Markdown supports ordered (numbered) and unordered (bulleted) lists.</p>\\n<p>Unordered lists use asterisks, pluses, and hyphens -- interchangably\\n-- as list markers:</p>\\n<pre><code>*   Red\\n*   Green\\n*   Blue\\n</code></pre>\\n<p>is equivalent to:</p>\\n<pre><code>+   Red\\n+   Green\\n+   Blue\\n</code></pre>\\n<p>and:</p>\\n<pre><code>-   Red\\n-   Green\\n-   Blue\\n</code></pre>\\n<p>Ordered lists use numbers followed by periods:</p>\\n<pre><code>1.  Bird\\n2.  McHale\\n3.  Parish\\n</code></pre>\\n<p>It&#39;s important to note that the actual numbers you use to mark the\\nlist have no effect on the HTML output Markdown produces. The HTML\\nMarkdown produces from the above list is:</p>\\n<pre><code>&lt;ol&gt;\\n&lt;li&gt;Bird&lt;/li&gt;\\n&lt;li&gt;McHale&lt;/li&gt;\\n&lt;li&gt;Parish&lt;/li&gt;\\n&lt;/ol&gt;\\n</code></pre>\\n<p>If you instead wrote the list in Markdown like this:</p>\\n<pre><code>1.  Bird\\n1.  McHale\\n1.  Parish\\n</code></pre>\\n<p>or even:</p>\\n<pre><code>3. Bird\\n1. McHale\\n8. Parish\\n</code></pre>\\n<p>you&#39;d get the exact same HTML output. The point is, if you want to,\\nyou can use ordinal numbers in your ordered Markdown lists, so that\\nthe numbers in your source match the numbers in your published HTML.\\nBut if you want to be lazy, you don&#39;t have to.</p>\\n<p>If you do use lazy list numbering, however, you should still start the\\nlist with the number 1. At some point in the future, Markdown may support\\nstarting ordered lists at an arbitrary number.</p>\\n<p>List markers typically start at the left margin, but may be indented by\\nup to three spaces. List markers must be followed by one or more spaces\\nor a tab.</p>\\n<p>To make lists look nice, you can wrap items with hanging indents:</p>\\n<pre><code>*   Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n    Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,\\n    viverra nec, fringilla in, laoreet vitae, risus.\\n*   Donec sit amet nisl. Aliquam semper ipsum sit amet velit.\\n    Suspendisse id sem consectetuer libero luctus adipiscing.\\n</code></pre>\\n<p>But if you want to be lazy, you don&#39;t have to:</p>\\n<pre><code>*   Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\nAliquam hendrerit mi posuere lectus. Vestibulum enim wisi,\\nviverra nec, fringilla in, laoreet vitae, risus.\\n*   Donec sit amet nisl. Aliquam semper ipsum sit amet velit.\\nSuspendisse id sem consectetuer libero luctus adipiscing.\\n</code></pre>\\n<p>If list items are separated by blank lines, Markdown will wrap the\\nitems in <code>&lt;p&gt;</code> tags in the HTML output. For example, this input:</p>\\n<pre><code>*   Bird\\n*   Magic\\n</code></pre>\\n<p>will turn into:</p>\\n<pre><code>&lt;ul&gt;\\n&lt;li&gt;Bird&lt;/li&gt;\\n&lt;li&gt;Magic&lt;/li&gt;\\n&lt;/ul&gt;\\n</code></pre>\\n<p>But this:</p>\\n<pre><code>*   Bird\\n\\n*   Magic\\n</code></pre>\\n<p>will turn into:</p>\\n<pre><code>&lt;ul&gt;\\n&lt;li&gt;&lt;p&gt;Bird&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;Magic&lt;/p&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n</code></pre>\\n<p>List items may consist of multiple paragraphs. Each subsequent\\nparagraph in a list item must be indented by either 4 spaces\\nor one tab:</p>\\n<pre><code>1.  This is a list item with two paragraphs. Lorem ipsum dolor\\n    sit amet, consectetuer adipiscing elit. Aliquam hendrerit\\n    mi posuere lectus.\\n\\n    Vestibulum enim wisi, viverra nec, fringilla in, laoreet\\n    vitae, risus. Donec sit amet nisl. Aliquam semper ipsum\\n    sit amet velit.\\n\\n2.  Suspendisse id sem consectetuer libero luctus adipiscing.\\n</code></pre>\\n<p>It looks nice if you indent every line of the subsequent\\nparagraphs, but here again, Markdown will allow you to be\\nlazy:</p>\\n<pre><code>*   This is a list item with two paragraphs.\\n\\n    This is the second paragraph in the list item. You&#39;re\\nonly required to indent the first line. Lorem ipsum dolor\\nsit amet, consectetuer adipiscing elit.\\n\\n*   Another item in the same list.\\n</code></pre>\\n<p>To put a blockquote within a list item, the blockquote&#39;s <code>&gt;</code>\\ndelimiters need to be indented:</p>\\n<pre><code>*   A list item with a blockquote:\\n\\n    &gt; This is a blockquote\\n    &gt; inside a list item.\\n</code></pre>\\n<p>To put a code block within a list item, the code block needs\\nto be indented <em>twice</em> -- 8 spaces or two tabs:</p>\\n<pre><code>*   A list item with a code block:\\n\\n        &lt;code goes here&gt;\\n</code></pre>\\n<p>It&#39;s worth noting that it&#39;s possible to trigger an ordered list by\\naccident, by writing something like this:</p>\\n<pre><code>1986. What a great season.\\n</code></pre>\\n<p>In other words, a <em>number-period-space</em> sequence at the beginning of a\\nline. To avoid this, you can backslash-escape the period:</p>\\n<pre><code>1986\\\\. What a great season.\\n</code></pre>\\n<h3 id='precode'>Code Blocks</h3>\\n\\n<p>Pre-formatted code blocks are used for writing about programming or\\nmarkup source code. Rather than forming normal paragraphs, the lines\\nof a code block are interpreted literally. Markdown wraps a code block\\nin both <code>&lt;pre&gt;</code> and <code>&lt;code&gt;</code> tags.</p>\\n<p>To produce a code block in Markdown, simply indent every line of the\\nblock by at least 4 spaces or 1 tab. For example, given this input:</p>\\n<pre><code>This is a normal paragraph:\\n\\n    This is a code block.\\n</code></pre>\\n<p>Markdown will generate:</p>\\n<pre><code>&lt;p&gt;This is a normal paragraph:&lt;/p&gt;\\n\\n&lt;pre&gt;&lt;code&gt;This is a code block.\\n&lt;/code&gt;&lt;/pre&gt;\\n</code></pre>\\n<p>One level of indentation -- 4 spaces or 1 tab -- is removed from each\\nline of the code block. For example, this:</p>\\n<pre><code>Here is an example of AppleScript:\\n\\n    tell application &#39;Foo&#39;\\n        beep\\n    end tell\\n</code></pre>\\n<p>will turn into:</p>\\n<pre><code>&lt;p&gt;Here is an example of AppleScript:&lt;/p&gt;\\n\\n&lt;pre&gt;&lt;code&gt;tell application &#39;Foo&#39;\\n    beep\\nend tell\\n&lt;/code&gt;&lt;/pre&gt;\\n</code></pre>\\n<p>A code block continues until it reaches a line that is not indented\\n(or the end of the article).</p>\\n<p>Within a code block, ampersands (<code>&amp;</code>) and angle brackets (<code>&lt;</code> and <code>&gt;</code>)\\nare automatically converted into HTML entities. This makes it very\\neasy to include example HTML source code using Markdown -- just paste\\nit and indent it, and Markdown will handle the hassle of encoding the\\nampersands and angle brackets. For example, this:</p>\\n<pre><code>    &lt;div class=&#39;footer&#39;&gt;\\n        &amp;copy; 2004 Foo Corporation\\n    &lt;/div&gt;\\n</code></pre>\\n<p>will turn into:</p>\\n<pre><code>&lt;pre&gt;&lt;code&gt;&amp;lt;div class=&#39;footer&#39;&amp;gt;\\n    &amp;amp;copy; 2004 Foo Corporation\\n&amp;lt;/div&amp;gt;\\n&lt;/code&gt;&lt;/pre&gt;\\n</code></pre>\\n<p>Regular Markdown syntax is not processed within code blocks. E.g.,\\nasterisks are just literal asterisks within a code block. This means\\nit&#39;s also easy to use Markdown to write about Markdown&#39;s own syntax.</p>\\n<h3 id='hr'>Horizontal Rules</h3>\\n\\n<p>You can produce a horizontal rule tag (<code>&lt;hr /&gt;</code>) by placing three or\\nmore hyphens, asterisks, or underscores on a line by themselves. If you\\nwish, you may use spaces between the hyphens or asterisks. Each of the\\nfollowing lines will produce a horizontal rule:</p>\\n<pre><code>* * *\\n\\n***\\n\\n*****\\n\\n- - -\\n\\n---------------------------------------\\n</code></pre>\\n<hr>\\n<h2 id='span'>Span Elements</h2>\\n\\n<h3 id='link'>Links</h3>\\n\\n<p>Markdown supports two style of links: <em>inline</em> and <em>reference</em>.</p>\\n<p>In both styles, the link text is delimited by [square brackets].</p>\\n<p>To create an inline link, use a set of regular parentheses immediately\\nafter the link text&#39;s closing square bracket. Inside the parentheses,\\nput the URL where you want the link to point, along with an <em>optional</em>\\ntitle for the link, surrounded in quotes. For example:</p>\\n<pre><code>This is [an example](http://example.com/ &#39;Title&#39;) inline link.\\n\\n[This link](http://example.net/) has no title attribute.\\n</code></pre>\\n<p>Will produce:</p>\\n<pre><code>&lt;p&gt;This is &lt;a href=&#39;http://example.com/&#39; title=&#39;Title&#39;&gt;\\nan example&lt;/a&gt; inline link.&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a href=&#39;http://example.net/&#39;&gt;This link&lt;/a&gt; has no\\ntitle attribute.&lt;/p&gt;\\n</code></pre>\\n<p>If you&#39;re referring to a local resource on the same server, you can\\nuse relative paths:</p>\\n<pre><code>See my [About](/about/) page for details.   \\n</code></pre>\\n<p>Reference-style links use a second set of square brackets, inside\\nwhich you place a label of your choosing to identify the link:</p>\\n<pre><code>This is [an example][id] reference-style link.\\n</code></pre>\\n<p>You can optionally use a space to separate the sets of brackets:</p>\\n<pre><code>This is [an example] [id] reference-style link.\\n</code></pre>\\n<p>Then, anywhere in the document, you define your link label like this,\\non a line by itself:</p>\\n<pre><code>[id]: http://example.com/  &#39;Optional Title Here&#39;\\n</code></pre>\\n<p>That is:</p>\\n<ul>\\n<li>Square brackets containing the link identifier (optionally\\nindented from the left margin using up to three spaces);</li>\\n<li>followed by a colon;</li>\\n<li>followed by one or more spaces (or tabs);</li>\\n<li>followed by the URL for the link;</li>\\n<li>optionally followed by a title attribute for the link, enclosed\\nin double or single quotes, or enclosed in parentheses.</li>\\n</ul>\\n<p>The following three link definitions are equivalent:</p>\\n<pre><code>[foo]: http://example.com/  &#39;Optional Title Here&#39;\\n[foo]: http://example.com/  &#39;Optional Title Here&#39;\\n[foo]: http://example.com/  (Optional Title Here)\\n</code></pre>\\n<p><strong>Note:</strong> There is a known bug in Markdown.pl 1.0.1 which prevents\\nsingle quotes from being used to delimit link titles.</p>\\n<p>The link URL may, optionally, be surrounded by angle brackets:</p>\\n<pre><code>[id]: &lt;http://example.com/&gt;  &#39;Optional Title Here&#39;\\n</code></pre>\\n<p>You can put the title attribute on the next line and use extra spaces\\nor tabs for padding, which tends to look better with longer URLs:</p>\\n<pre><code>[id]: http://example.com/longish/path/to/resource/here\\n    &#39;Optional Title Here&#39;\\n</code></pre>\\n<p>Link definitions are only used for creating links during Markdown\\nprocessing, and are stripped from your document in the HTML output.</p>\\n<p>Link definition names may consist of letters, numbers, spaces, and\\npunctuation -- but they are <em>not</em> case sensitive. E.g. these two\\nlinks:</p>\\n<pre><code>[link text][a]\\n[link text][A]\\n</code></pre>\\n<p>are equivalent.</p>\\n<p>The <em>implicit link name</em> shortcut allows you to omit the name of the\\nlink, in which case the link text itself is used as the name.\\nJust use an empty set of square brackets -- e.g., to link the word\\n&#39;Google&#39; to the google.com web site, you could simply write:</p>\\n<pre><code>[Google][]\\n</code></pre>\\n<p>And then define the link:</p>\\n<pre><code>[Google]: http://google.com/\\n</code></pre>\\n<p>Because link names may contain spaces, this shortcut even works for\\nmultiple words in the link text:</p>\\n<pre><code>Visit [Daring Fireball][] for more information.\\n</code></pre>\\n<p>And then define the link:</p>\\n<pre><code>[Daring Fireball]: http://daringfireball.net/\\n</code></pre>\\n<p>Link definitions can be placed anywhere in your Markdown document. I\\ntend to put them immediately after each paragraph in which they&#39;re\\nused, but if you want, you can put them all at the end of your\\ndocument, sort of like footnotes.</p>\\n<p>Here&#39;s an example of reference links in action:</p>\\n<pre><code>I get 10 times more traffic from [Google] [1] than from\\n[Yahoo] [2] or [MSN] [3].\\n\\n  [1]: http://google.com/        &#39;Google&#39;\\n  [2]: http://search.yahoo.com/  &#39;Yahoo Search&#39;\\n  [3]: http://search.msn.com/    &#39;MSN Search&#39;\\n</code></pre>\\n<p>Using the implicit link name shortcut, you could instead write:</p>\\n<pre><code>I get 10 times more traffic from [Google][] than from\\n[Yahoo][] or [MSN][].\\n\\n  [google]: http://google.com/        &#39;Google&#39;\\n  [yahoo]:  http://search.yahoo.com/  &#39;Yahoo Search&#39;\\n  [msn]:    http://search.msn.com/    &#39;MSN Search&#39;\\n</code></pre>\\n<p>Both of the above examples will produce the following HTML output:</p>\\n<pre><code>&lt;p&gt;I get 10 times more traffic from &lt;a href=&#39;http://google.com/&#39;\\ntitle=&#39;Google&#39;&gt;Google&lt;/a&gt; than from\\n&lt;a href=&#39;http://search.yahoo.com/&#39; title=&#39;Yahoo Search&#39;&gt;Yahoo&lt;/a&gt;\\nor &lt;a href=&#39;http://search.msn.com/&#39; title=&#39;MSN Search&#39;&gt;MSN&lt;/a&gt;.&lt;/p&gt;\\n</code></pre>\\n<p>For comparison, here is the same paragraph written using\\nMarkdown&#39;s inline link style:</p>\\n<pre><code>I get 10 times more traffic from [Google](http://google.com/ &#39;Google&#39;)\\nthan from [Yahoo](http://search.yahoo.com/ &#39;Yahoo Search&#39;) or\\n[MSN](http://search.msn.com/ &#39;MSN Search&#39;).\\n</code></pre>\\n<p>The point of reference-style links is not that they&#39;re easier to\\nwrite. The point is that with reference-style links, your document\\nsource is vastly more readable. Compare the above examples: using\\nreference-style links, the paragraph itself is only 81 characters\\nlong; with inline-style links, it&#39;s 176 characters; and as raw HTML,\\nit&#39;s 234 characters. In the raw HTML, there&#39;s more markup than there\\nis text.</p>\\n<p>With Markdown&#39;s reference-style links, a source document much more\\nclosely resembles the final output, as rendered in a browser. By\\nallowing you to move the markup-related metadata out of the paragraph,\\nyou can add links without interrupting the narrative flow of your\\nprose.</p>\\n<h3 id='em'>Emphasis</h3>\\n\\n<p>Markdown treats asterisks (<code>*</code>) and underscores (<code>_</code>) as indicators of\\nemphasis. Text wrapped with one <code>*</code> or <code>_</code> will be wrapped with an\\nHTML <code>&lt;em&gt;</code> tag; double <code>*</code>&#39;s or <code>_</code>&#39;s will be wrapped with an HTML\\n<code>&lt;strong&gt;</code> tag. E.g., this input:</p>\\n<pre><code>*single asterisks*\\n\\n_single underscores_\\n\\n**double asterisks**\\n\\n__double underscores__\\n</code></pre>\\n<p>will produce:</p>\\n<pre><code>&lt;em&gt;single asterisks&lt;/em&gt;\\n\\n&lt;em&gt;single underscores&lt;/em&gt;\\n\\n&lt;strong&gt;double asterisks&lt;/strong&gt;\\n\\n&lt;strong&gt;double underscores&lt;/strong&gt;\\n</code></pre>\\n<p>You can use whichever style you prefer; the lone restriction is that\\nthe same character must be used to open and close an emphasis span.</p>\\n<p>Emphasis can be used in the middle of a word:</p>\\n<pre><code>un*frigging*believable\\n</code></pre>\\n<p>But if you surround an <code>*</code> or <code>_</code> with spaces, it&#39;ll be treated as a\\nliteral asterisk or underscore.</p>\\n<p>To produce a literal asterisk or underscore at a position where it\\nwould otherwise be used as an emphasis delimiter, you can backslash\\nescape it:</p>\\n<pre><code>\\\\*this text is surrounded by literal asterisks\\\\*\\n</code></pre>\\n<h3 id='code'>Code</h3>\\n\\n<p>To indicate a span of code, wrap it with backtick quotes (<code>`</code>).\\nUnlike a pre-formatted code block, a code span indicates code within a\\nnormal paragraph. For example:</p>\\n<pre><code>Use the `printf()` function.\\n</code></pre>\\n<p>will produce:</p>\\n<pre><code>&lt;p&gt;Use the &lt;code&gt;printf()&lt;/code&gt; function.&lt;/p&gt;\\n</code></pre>\\n<p>To include a literal backtick character within a code span, you can use\\nmultiple backticks as the opening and closing delimiters:</p>\\n<pre><code>``There is a literal backtick (`) here.``\\n</code></pre>\\n<p>which will produce this:</p>\\n<pre><code>&lt;p&gt;&lt;code&gt;There is a literal backtick (`) here.&lt;/code&gt;&lt;/p&gt;\\n</code></pre>\\n<p>The backtick delimiters surrounding a code span may include spaces --\\none after the opening, one before the closing. This allows you to place\\nliteral backtick characters at the beginning or end of a code span:</p>\\n<pre><code>A single backtick in a code span: `` ` ``\\n\\nA backtick-delimited string in a code span: `` `foo` ``\\n</code></pre>\\n<p>will produce:</p>\\n<pre><code>&lt;p&gt;A single backtick in a code span: &lt;code&gt;`&lt;/code&gt;&lt;/p&gt;\\n\\n&lt;p&gt;A backtick-delimited string in a code span: &lt;code&gt;`foo`&lt;/code&gt;&lt;/p&gt;\\n</code></pre>\\n<p>With a code span, ampersands and angle brackets are encoded as HTML\\nentities automatically, which makes it easy to include example HTML\\ntags. Markdown will turn this:</p>\\n<pre><code>Please don&#39;t use any `&lt;blink&gt;` tags.\\n</code></pre>\\n<p>into:</p>\\n<pre><code>&lt;p&gt;Please don&#39;t use any &lt;code&gt;&amp;lt;blink&amp;gt;&lt;/code&gt; tags.&lt;/p&gt;\\n</code></pre>\\n<p>You can write this:</p>\\n<pre><code>`&amp;#8212;` is the decimal-encoded equivalent of `&amp;mdash;`.\\n</code></pre>\\n<p>to produce:</p>\\n<pre><code>&lt;p&gt;&lt;code&gt;&amp;amp;#8212;&lt;/code&gt; is the decimal-encoded\\nequivalent of &lt;code&gt;&amp;amp;mdash;&lt;/code&gt;.&lt;/p&gt;\\n</code></pre>\\n<h3 id='img'>Images</h3>\\n\\n<p>Admittedly, it&#39;s fairly difficult to devise a &#39;natural&#39; syntax for\\nplacing images into a plain text document format.</p>\\n<p>Markdown uses an image syntax that is intended to resemble the syntax\\nfor links, allowing for two styles: <em>inline</em> and <em>reference</em>.</p>\\n<p>Inline image syntax looks like this:</p>\\n<pre><code>![Alt text](/path/to/img.jpg)\\n\\n![Alt text](/path/to/img.jpg &#39;Optional title&#39;)\\n</code></pre>\\n<p>That is:</p>\\n<ul>\\n<li>An exclamation mark: <code>!</code>;</li>\\n<li>followed by a set of square brackets, containing the <code>alt</code>\\nattribute text for the image;</li>\\n<li>followed by a set of parentheses, containing the URL or path to\\nthe image, and an optional <code>title</code> attribute enclosed in double\\nor single quotes.</li>\\n</ul>\\n<p>Reference-style image syntax looks like this:</p>\\n<pre><code>![Alt text][id]\\n</code></pre>\\n<p>Where &#39;id&#39; is the name of a defined image reference. Image references\\nare defined using syntax identical to link references:</p>\\n<pre><code>[id]: url/to/image  &#39;Optional title attribute&#39;\\n</code></pre>\\n<p>As of this writing, Markdown has no syntax for specifying the\\ndimensions of an image; if this is important to you, you can simply\\nuse regular HTML <code>&lt;img&gt;</code> tags.</p>\\n<hr>\\n<h2 id='misc'>Miscellaneous</h2>\\n\\n<h3 id='autolink'>Automatic Links</h3>\\n\\n<p>Markdown supports a shortcut style for creating &#39;automatic&#39; links for URLs and email addresses: simply surround the URL or email address with angle brackets. What this means is that if you want to show the actual text of a URL or email address, and also have it be a clickable link, you can do this:</p>\\n<pre><code>&lt;http://example.com/&gt;\\n</code></pre>\\n<p>Markdown will turn this into:</p>\\n<pre><code>&lt;a href=&#39;http://example.com/&#39;&gt;http://example.com/&lt;/a&gt;\\n</code></pre>\\n<p>Automatic links for email addresses work similarly, except that\\nMarkdown will also perform a bit of randomized decimal and hex\\nentity-encoding to help obscure your address from address-harvesting\\nspambots. For example, Markdown will turn this:</p>\\n<pre><code>&lt;address@example.com&gt;\\n</code></pre>\\n<p>into something like this:</p>\\n<pre><code>&lt;a href=&#39;&amp;#x6D;&amp;#x61;i&amp;#x6C;&amp;#x74;&amp;#x6F;:&amp;#x61;&amp;#x64;&amp;#x64;&amp;#x72;&amp;#x65;\\n&amp;#115;&amp;#115;&amp;#64;&amp;#101;&amp;#120;&amp;#x61;&amp;#109;&amp;#x70;&amp;#x6C;e&amp;#x2E;&amp;#99;&amp;#111;\\n&amp;#109;&#39;&gt;&amp;#x61;&amp;#x64;&amp;#x64;&amp;#x72;&amp;#x65;&amp;#115;&amp;#115;&amp;#64;&amp;#101;&amp;#120;&amp;#x61;\\n&amp;#109;&amp;#x70;&amp;#x6C;e&amp;#x2E;&amp;#99;&amp;#111;&amp;#109;&lt;/a&gt;\\n</code></pre>\\n<p>which will render in a browser as a clickable link to &#39;<a href=\\\"mailto:address@example.com\\\">address@example.com</a>&#39;.</p>\\n<p>(This sort of entity-encoding trick will indeed fool many, if not\\nmost, address-harvesting bots, but it definitely won&#39;t fool all of\\nthem. It&#39;s better than nothing, but an address published in this way\\nwill probably eventually start receiving spam.)</p>\\n<h3 id='backslash'>Backslash Escapes</h3>\\n\\n<p>Markdown allows you to use backslash escapes to generate literal\\ncharacters which would otherwise have special meaning in Markdown&#39;s\\nformatting syntax. For example, if you wanted to surround a word\\nwith literal asterisks (instead of an HTML <code>&lt;em&gt;</code> tag), you can use\\nbackslashes before the asterisks, like this:</p>\\n<pre><code>\\\\*literal asterisks\\\\*\\n</code></pre>\\n<p>Markdown provides backslash escapes for the following characters:</p>\\n<pre><code>\\\\   backslash\\n`   backtick\\n*   asterisk\\n_   underscore\\n{}  curly braces\\n[]  square brackets\\n()  parentheses\\n#   hash mark\\n+\\tplus sign\\n-\\tminus sign (hyphen)\\n.   dot\\n!   exclamation mark\\n</code></pre>\\n\",\n            \"url\": \"https://www.ceciliosilva.me/blog/test-blog-post-2\",\n            \"title\": \"Test Blog Post 2\",\n            \"summary\": \"This is the second test blogpost and this is the excerpt\",\n            \"date_modified\": \"2022-11-02T00:00:00.000Z\",\n            \"author\": {\n                \"name\": \"Cecilio Silva Monteiro\",\n                \"url\": \"https://www.ceciliosilva.me/about\"\n            },\n            \"tags\": [\n                \"Markdown Test\"\n            ]\n        },\n        {\n            \"id\": \"https://www.ceciliosilva.me/blog/test-blog-post-1\",\n            \"content_html\": \"<h1>Markdown: Syntax</h1>\\n<ul>\\n<li><a href=\\\"#overview\\\">Overview</a><ul>\\n<li><a href=\\\"#philosophy\\\">Philosophy</a></li>\\n<li><a href=\\\"#html\\\">Inline HTML</a></li>\\n<li><a href=\\\"#autoescape\\\">Automatic Escaping for Special Characters</a></li>\\n</ul>\\n</li>\\n<li><a href=\\\"#block\\\">Block Elements</a><ul>\\n<li><a href=\\\"#p\\\">Paragraphs and Line Breaks</a></li>\\n<li><a href=\\\"#header\\\">Headers</a></li>\\n<li><a href=\\\"#blockquote\\\">Blockquotes</a></li>\\n<li><a href=\\\"#list\\\">Lists</a></li>\\n<li><a href=\\\"#precode\\\">Code Blocks</a></li>\\n<li><a href=\\\"#hr\\\">Horizontal Rules</a></li>\\n</ul>\\n</li>\\n<li><a href=\\\"#span\\\">Span Elements</a><ul>\\n<li><a href=\\\"#link\\\">Links</a></li>\\n<li><a href=\\\"#em\\\">Emphasis</a></li>\\n<li><a href=\\\"#code\\\">Code</a></li>\\n<li><a href=\\\"#img\\\">Images</a></li>\\n</ul>\\n</li>\\n<li><a href=\\\"#misc\\\">Miscellaneous</a><ul>\\n<li><a href=\\\"#backslash\\\">Backslash Escapes</a></li>\\n<li><a href=\\\"#autolink\\\">Automatic Links</a></li>\\n</ul>\\n</li>\\n</ul>\\n<p><strong>Note:</strong> This document is itself written using Markdown; you\\ncan <a href=\\\"/projects/markdown/syntax.text\\\">see the source for it by adding &#39;.text&#39; to the URL</a>.</p>\\n<hr>\\n<h2>Overview</h2>\\n<h3>Philosophy</h3>\\n<p>Markdown is intended to be as easy-to-read and easy-to-write as is feasible.</p>\\n<p>Readability, however, is emphasized above all else. A Markdown-formatted\\ndocument should be publishable as-is, as plain text, without looking\\nlike it&#39;s been marked up with tags or formatting instructions. While\\nMarkdown&#39;s syntax has been influenced by several existing text-to-HTML\\nfilters -- 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>,\\n<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\\ninspiration for Markdown&#39;s syntax is the format of plain text email.</p>\\n<h2>Block Elements</h2>\\n<h3>Paragraphs and Line Breaks</h3>\\n<p>A paragraph is simply one or more consecutive lines of text, separated\\nby one or more blank lines. (A blank line is any line that looks like a\\nblank line -- a line containing nothing but spaces or tabs is considered\\nblank.) Normal paragraphs should not be indented with spaces or tabs.</p>\\n<p>The implication of the &quot;one or more consecutive lines of text&quot; rule is\\nthat Markdown supports &quot;hard-wrapped&quot; text paragraphs. This differs\\nsignificantly from most other text-to-HTML formatters (including Movable\\nType&#39;s &quot;Convert Line Breaks&quot; option) which translate every line break\\ncharacter in a paragraph into a <code>&lt;br /&gt;</code> tag.</p>\\n<p>When you <em>do</em> want to insert a <code>&lt;br /&gt;</code> break tag using Markdown, you\\nend a line with two or more spaces, then type return.</p>\\n<h3>Headers</h3>\\n<p>Markdown supports two styles of headers, [Setext] [1] and [atx] [2].</p>\\n<p>Optionally, you may &quot;close&quot; atx-style headers. This is purely\\ncosmetic -- you can use this if you think it looks better. The\\nclosing hashes don&#39;t even need to match the number of hashes\\nused to open the header. (The number of opening hashes\\ndetermines the header level.)</p>\\n<h3>Blockquotes</h3>\\n<p>Markdown uses email-style <code>&gt;</code> characters for blockquoting. If you&#39;re\\nfamiliar with quoting passages of text in an email message, then you\\nknow how to create a blockquote in Markdown. It looks best if you hard\\nwrap the text and put a <code>&gt;</code> before every line:</p>\\n<blockquote>\\n<p>This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,\\nconsectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.\\nVestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.</p>\\n<p>Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse\\nid sem consectetuer libero luctus adipiscing.</p>\\n</blockquote>\\n<p>Markdown allows you to be lazy and only put the <code>&gt;</code> before the first\\nline of a hard-wrapped paragraph:</p>\\n<blockquote>\\n<p>This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,\\nconsectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.\\nVestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.</p>\\n</blockquote>\\n<blockquote>\\n<p>Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse\\nid sem consectetuer libero luctus adipiscing.</p>\\n</blockquote>\\n<p>Blockquotes can be nested (i.e. a blockquote-in-a-blockquote) by\\nadding additional levels of <code>&gt;</code>:</p>\\n<blockquote>\\n<p>This is the first level of quoting.</p>\\n<blockquote>\\n<p>This is nested blockquote.</p>\\n</blockquote>\\n<p>Back to the first level.</p>\\n</blockquote>\\n<p>Blockquotes can contain other Markdown elements, including headers, lists,\\nand code blocks:</p>\\n<blockquote>\\n<h2>This is a header.</h2>\\n<ol>\\n<li>This is the first list item.</li>\\n<li>This is the second list item.</li>\\n</ol>\\n<p>Here&#39;s some example code:</p>\\n<pre><code>return shell_exec(&quot;echo $input | $markdown_script&quot;);\\n</code></pre>\\n</blockquote>\\n<p>Any decent text editor should make email-style quoting easy. For\\nexample, with BBEdit, you can make a selection and choose Increase\\nQuote Level from the Text menu.</p>\\n<h3>Lists</h3>\\n<p>Markdown supports ordered (numbered) and unordered (bulleted) lists.</p>\\n<p>Unordered lists use asterisks, pluses, and hyphens -- interchangably\\n-- as list markers:</p>\\n<ul>\\n<li>Red</li>\\n<li>Green</li>\\n<li>Blue</li>\\n</ul>\\n<p>is equivalent to:</p>\\n<ul>\\n<li>Red</li>\\n<li>Green</li>\\n<li>Blue</li>\\n</ul>\\n<p>and:</p>\\n<ul>\\n<li>Red</li>\\n<li>Green</li>\\n<li>Blue</li>\\n</ul>\\n<p>Ordered lists use numbers followed by periods:</p>\\n<ol>\\n<li>Bird</li>\\n<li>McHale</li>\\n<li>Parish</li>\\n</ol>\\n<p>It&#39;s important to note that the actual numbers you use to mark the\\nlist have no effect on the HTML output Markdown produces. The HTML\\nMarkdown produces from the above list is:</p>\\n<p>If you instead wrote the list in Markdown like this:</p>\\n<ol>\\n<li>Bird</li>\\n<li>McHale</li>\\n<li>Parish</li>\\n</ol>\\n<p>or even:</p>\\n<ol start=\\\"3\\\">\\n<li>Bird</li>\\n<li>McHale</li>\\n<li>Parish</li>\\n</ol>\\n<p>you&#39;d get the exact same HTML output. The point is, if you want to,\\nyou can use ordinal numbers in your ordered Markdown lists, so that\\nthe numbers in your source match the numbers in your published HTML.\\nBut if you want to be lazy, you don&#39;t have to.</p>\\n<p>To make lists look nice, you can wrap items with hanging indents:</p>\\n<ul>\\n<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\nAliquam hendrerit mi posuere lectus. Vestibulum enim wisi,\\nviverra nec, fringilla in, laoreet vitae, risus.</li>\\n<li>Donec sit amet nisl. Aliquam semper ipsum sit amet velit.\\nSuspendisse id sem consectetuer libero luctus adipiscing.</li>\\n</ul>\\n<p>But if you want to be lazy, you don&#39;t have to:</p>\\n<ul>\\n<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\nAliquam hendrerit mi posuere lectus. Vestibulum enim wisi,\\nviverra nec, fringilla in, laoreet vitae, risus.</li>\\n<li>Donec sit amet nisl. Aliquam semper ipsum sit amet velit.\\nSuspendisse id sem consectetuer libero luctus adipiscing.</li>\\n</ul>\\n<p>List items may consist of multiple paragraphs. Each subsequent\\nparagraph in a list item must be indented by either 4 spaces\\nor one tab:</p>\\n<ol>\\n<li><p>This is a list item with two paragraphs. Lorem ipsum dolor\\nsit amet, consectetuer adipiscing elit. Aliquam hendrerit\\nmi posuere lectus.</p>\\n<p>Vestibulum enim wisi, viverra nec, fringilla in, laoreet\\nvitae, risus. Donec sit amet nisl. Aliquam semper ipsum\\nsit amet velit.</p>\\n</li>\\n<li><p>Suspendisse id sem consectetuer libero luctus adipiscing.</p>\\n</li>\\n</ol>\\n<p>It looks nice if you indent every line of the subsequent\\nparagraphs, but here again, Markdown will allow you to be\\nlazy:</p>\\n<ul>\\n<li><p>This is a list item with two paragraphs.</p>\\n<p>This is the second paragraph in the list item. You&#39;re</p>\\n</li>\\n</ul>\\n<p>only required to indent the first line. Lorem ipsum dolor\\nsit amet, consectetuer adipiscing elit.</p>\\n<ul>\\n<li>Another item in the same list.</li>\\n</ul>\\n<p>To put a blockquote within a list item, the blockquote&#39;s <code>&gt;</code>\\ndelimiters need to be indented:</p>\\n<ul>\\n<li><p>A list item with a blockquote:</p>\\n<blockquote>\\n<p>This is a blockquote\\ninside a list item.</p>\\n</blockquote>\\n</li>\\n</ul>\\n<p>To put a code block within a list item, the code block needs\\nto be indented <em>twice</em> -- 8 spaces or two tabs:</p>\\n<ul>\\n<li><p>A list item with a code block:</p>\\n<pre><code>&lt;code goes here&gt;\\n</code></pre>\\n</li>\\n</ul>\\n<h3>Code Blocks</h3>\\n<p>Pre-formatted code blocks are used for writing about programming or\\nmarkup source code. Rather than forming normal paragraphs, the lines\\nof a code block are interpreted literally. Markdown wraps a code block\\nin both <code>&lt;pre&gt;</code> and <code>&lt;code&gt;</code> tags.</p>\\n<p>To produce a code block in Markdown, simply indent every line of the\\nblock by at least 4 spaces or 1 tab.</p>\\n<p>This is a normal paragraph:</p>\\n<pre><code>This is a code block.\\n</code></pre>\\n<p>Here is an example of AppleScript:</p>\\n<pre><code>tell application &quot;Foo&quot;\\n    beep\\nend tell\\n</code></pre>\\n<p>A code block continues until it reaches a line that is not indented\\n(or the end of the article).</p>\\n<p>Within a code block, ampersands (<code>&amp;</code>) and angle brackets (<code>&lt;</code> and <code>&gt;</code>)\\nare automatically converted into HTML entities. This makes it very\\neasy to include example HTML source code using Markdown -- just paste\\nit and indent it, and Markdown will handle the hassle of encoding the\\nampersands and angle brackets. For example, this:</p>\\n<pre><code>&lt;div class=&quot;footer&quot;&gt;\\n    &amp;copy; 2004 Foo Corporation\\n&lt;/div&gt;\\n</code></pre>\\n<p>Regular Markdown syntax is not processed within code blocks. E.g.,\\nasterisks are just literal asterisks within a code block. This means\\nit&#39;s also easy to use Markdown to write about Markdown&#39;s own syntax.</p>\\n<pre><code>tell application &quot;Foo&quot;\\n    beep\\nend tell\\n</code></pre>\\n<h2>Span Elements</h2>\\n<h3>Links</h3>\\n<p>Markdown supports two style of links: <em>inline</em> and <em>reference</em>.</p>\\n<p>In both styles, the link text is delimited by [square brackets].</p>\\n<p>To create an inline link, use a set of regular parentheses immediately\\nafter the link text&#39;s closing square bracket. Inside the parentheses,\\nput the URL where you want the link to point, along with an <em>optional</em>\\ntitle for the link, surrounded in quotes. For example:</p>\\n<p>This is <a href=\\\"http://example.com/\\\">an example</a> inline link.</p>\\n<p><a href=\\\"http://example.net/\\\">This link</a> has no title attribute.</p>\\n<h3>Emphasis</h3>\\n<p>Markdown treats asterisks (<code>*</code>) and underscores (<code>_</code>) as indicators of\\nemphasis. Text wrapped with one <code>*</code> or <code>_</code> will be wrapped with an\\nHTML <code>&lt;em&gt;</code> tag; double <code>*</code>&#39;s or <code>_</code>&#39;s will be wrapped with an HTML\\n<code>&lt;strong&gt;</code> tag. E.g., this input:</p>\\n<p><em>single asterisks</em></p>\\n<p><em>single underscores</em></p>\\n<p><strong>double asterisks</strong></p>\\n<p><strong>double underscores</strong></p>\\n<h3>Code</h3>\\n<p>To indicate a span of code, wrap it with backtick quotes (<code>`</code>).\\nUnlike a pre-formatted code block, a code span indicates code within a\\nnormal paragraph. For example:</p>\\n<p>Use the <code>printf()</code> function.</p>\\n\",\n            \"url\": \"https://www.ceciliosilva.me/blog/test-blog-post-1\",\n            \"title\": \"Test Blog Post 1\",\n            \"summary\": \"This is a test blogpost and this is the excerpt\",\n            \"image\": \"https://www.ceciliosilva.me/api/media-content-s3/file/AquaCover.gif\",\n            \"date_modified\": \"2022-10-31T00:00:00.000Z\",\n            \"author\": {\n                \"name\": \"Cecilio Silva Monteiro\",\n                \"url\": \"https://www.ceciliosilva.me/about\"\n            },\n            \"tags\": [\n                \"Markdown Test\"\n            ]\n        }\n    ]\n}"