{"componentChunkName":"component---src-templates-blog-post-js","path":"/markdown","result":{"data":{"markdownRemark":{"id":"ba5cadf6-fa42-555a-a075-bbdc458dc5ec","html":"<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's been marked up with tags or formatting instructions. While\nMarkdown'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'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 \"one or more consecutive lines of text\" rule is\nthat Markdown supports \"hard-wrapped\" text paragraphs. This differs\nsignificantly from most other text-to-HTML formatters (including Movable\nType's \"Convert Line Breaks\" option) which translate every line break\ncharacter in a paragraph into a <code class=\"language-text\">&lt;br /&gt;</code> tag.</p>\n<p>When you <em>do</em> want to insert a <code class=\"language-text\">&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 \"close\" atx-style headers. This is purely\ncosmetic -- you can use this if you think it looks better. The\nclosing hashes don'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 class=\"language-text\">&gt;</code> characters for blockquoting. If you'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 class=\"language-text\">&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 class=\"language-text\">&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 class=\"language-text\">&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's some example code:</p>\n<div class=\"gatsby-highlight\" data-language=\"text\"><pre class=\"language-text\"><code class=\"language-text\">return shell_exec(&quot;echo $input | $markdown_script&quot;);</code></pre></div>\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'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'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'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'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>\n<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>Suspendisse id sem consectetuer libero luctus adipiscing.</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>\n<p>This is a list item with two paragraphs.</p>\n<p>  This is the second paragraph in the list item. You're</p>\n<p>only required to indent the first line. Lorem ipsum dolor\nsit amet, consectetuer adipiscing elit.</p>\n</li>\n<li>Another item in the same list.</li>\n</ul>\n<p>To put a blockquote within a list item, the blockquote's <code class=\"language-text\">&gt;</code>\ndelimiters need to be indented:</p>\n<ul>\n<li>\n<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>\n<p>A list item with a code block:</p>\n  <code goes here>\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 class=\"language-text\">&lt;pre&gt;</code> and <code class=\"language-text\">&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<div class=\"gatsby-highlight\" data-language=\"javascript\"><pre class=\"language-javascript\"><code class=\"language-javascript\"><span class=\"token keyword\">import</span> React <span class=\"token keyword\">from</span> <span class=\"token string\">\"react\"</span>\n<span class=\"token keyword\">import</span> <span class=\"token punctuation\">{</span> Link<span class=\"token punctuation\">,</span> useStaticQuery<span class=\"token punctuation\">,</span> graphql <span class=\"token punctuation\">}</span> <span class=\"token keyword\">from</span> <span class=\"token string\">\"gatsby\"</span>\n<span class=\"token keyword\">import</span> Navigation <span class=\"token keyword\">from</span> <span class=\"token string\">\"../components/navigation\"</span>\n\n<span class=\"token keyword\">export</span> <span class=\"token keyword\">default</span> <span class=\"token punctuation\">(</span><span class=\"token parameter\"><span class=\"token punctuation\">{</span> children <span class=\"token punctuation\">}</span></span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=></span> <span class=\"token punctuation\">{</span>\n  <span class=\"token keyword\">const</span> data <span class=\"token operator\">=</span> <span class=\"token function\">useStaticQuery</span><span class=\"token punctuation\">(</span>\n    graphql<span class=\"token template-string\"><span class=\"token template-punctuation string\">`</span><span class=\"token string\">\n      query {\n        site {\n          siteMetadata {\n            title\n          }\n        }\n      }\n    </span><span class=\"token template-punctuation string\">`</span></span>\n  <span class=\"token punctuation\">)</span>\n  <span class=\"token keyword\">return</span> <span class=\"token punctuation\">(</span>\n    <span class=\"token operator\">&lt;</span>div className<span class=\"token operator\">=</span><span class=\"token string\">\"site-wrapper\"</span><span class=\"token operator\">></span>\n      <span class=\"token operator\">&lt;</span>header className<span class=\"token operator\">=</span><span class=\"token string\">\"site-header\"</span><span class=\"token operator\">></span>\n        <span class=\"token operator\">&lt;</span>div className<span class=\"token operator\">=</span><span class=\"token string\">\"site-title\"</span><span class=\"token operator\">></span>\n          <span class=\"token operator\">&lt;</span>Link to<span class=\"token operator\">=</span><span class=\"token string\">\"/\"</span><span class=\"token operator\">></span><span class=\"token punctuation\">{</span>data<span class=\"token punctuation\">.</span>site<span class=\"token punctuation\">.</span>siteMetadata<span class=\"token punctuation\">.</span>title<span class=\"token punctuation\">}</span><span class=\"token operator\">&lt;</span><span class=\"token operator\">/</span>Link<span class=\"token operator\">></span>\n        <span class=\"token operator\">&lt;</span><span class=\"token operator\">/</span>div<span class=\"token operator\">></span>\n        <span class=\"token operator\">&lt;</span>Navigation <span class=\"token operator\">/</span><span class=\"token operator\">></span>\n      <span class=\"token operator\">&lt;</span><span class=\"token operator\">/</span>header<span class=\"token operator\">></span>\n      <span class=\"token punctuation\">{</span>children<span class=\"token punctuation\">}</span>\n    <span class=\"token operator\">&lt;</span><span class=\"token operator\">/</span>div<span class=\"token operator\">></span>\n  <span class=\"token punctuation\">)</span>\n<span class=\"token punctuation\">}</span></code></pre></div>\n<p>This is a normal paragraph:</p>\n<p><code class=\"language-text\">This is a code block.</code></p>\n<p>Here is an example of AppleScript:</p>\n<div class=\"gatsby-highlight\" data-language=\"text\"><pre class=\"language-text\"><code class=\"language-text\">tell application &quot;Foo&quot;\n    beep\nend tell</code></pre></div>\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 class=\"language-text\">&amp;</code>) and angle brackets (<code class=\"language-text\">&lt;</code> and <code class=\"language-text\">&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<div class=\"gatsby-highlight\" data-language=\"text\"><pre class=\"language-text\"><code class=\"language-text\">&lt;div class=&quot;footer&quot;&gt;\n    &amp;copy; 2004 Foo Corporation\n&lt;/div&gt;</code></pre></div>\n<p><figure class=\"gatsby-resp-image-figure\" style=\"\">\n    <span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 1024px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 150%; position: relative; bottom: 0; left: 0; background-image: url('data:image/svg+xml,%3csvg%20xmlns=\\'http://www.w3.org/2000/svg\\'%20width=\\'400\\'%20height=\\'600\\'%20viewBox=\\'0%200%20400%20600\\'%20preserveAspectRatio=\\'none\\'%3e%3cpath%20d=\\'M0%2082v82h10l2%201%203%202c2%200%202%200%201%201l-2%201-3%203c-4%202-8%205-5%205l1%201h1l2-1c3%201%201%203-3%203l-3%201H1c-1-1-1%200-1%206%200%209%201%2012%203%2012l2%201v2l-2%201c-2%200-3%200-3%207%200%204%200%207%201%206s6%200%206%201l-1%201v2H4c-2%200-2%200-1%201%201%202%201%202-1%202-3%202-3%2012%201%2013%202%200%202%200%202-4l1-4h1c0%202%203%205%205%204l4%202%204%203%202%201%201%201%201-2h2c2%202%205%203%203%201-1-1%200-2%201-3h2v8c-1%202-3%203-3%201%200-3%200-4-2-4s-2%200-1%201l1%207-4-4-3-3v3c-1%202-1%202-3%201l-3-2-2-1c0-2-3-2-3%200H6c-1-2-4-3-4-1l1%202-1%202c-2%202-2%203-2%2015v14h4l4-1h5l4%203c-1%201%200%201%202%201l4%201%201%201%201%201v1h-3c0-3-1-2-3%201-2%202-2%202-1%204%202%202%202%202%200%202h-2l-1%201v1c-2%200-2-8%200-9%203-2%200-2-2%200-3%201-3%201-5-1-3-3-6-3-4%200%201%201%201%201-1%201l-3-1v17c0%2015%201%2020%202%2015l3-2c4-2%204-3%201-2-2%200-2%200-1-1l6-1a403%20403%200%200016%201c1%202%201%202-1%201l-5-1-2%201H9l3%202%204%202c1%201%202%202%201%203%200%202-3%202-3%200l-2-1-3-1c0-2-3%203-3%206H4l-1-2c-3%204-3%206-3%2017s0%2013%202%2013l1-1%204-1%206-1%209-1c9%200%2013-2%2017-6%202-2%204-4%205-3l1-1c0-2%202-1%202%201%201%201%200%202-1%202s-2%202%200%202c7%201%2013%200%2011-2l-1-1c-1%201-4-1-4-3%200-1%201-1%202%201%202%202%2012%202%2014%200%203-3%202-3-1-3h-7c-4%200-4%200-2-1s2-1-1-1h-3l5-1%205%201h2l5%201h4l10-1c6%200%207%200%2010%203%204%203%209%204%209%202l1-2c2%200%203-2%202-3v-2l2-2c0-2%200-2%201-1%201%202%201%202%203%200s4-3%204-1l-1%201-2%201%202%201h3c1%201%200%201-2%202-4%201-6%204-4%206h3c3-1%209%200%2013%204%203%203%204%206%201%203h-2l-1-1h-7l-2%201c0%202%200%202-3%201-3-2-4%200-1%201v2l-4-3c-2-2-3-2-5-1h-7c-2%200-4%200-3%201l4%201c2%200%203%200%203%202h-3c-3%200-3%200-2%202v3l-2-3c-4-6-8-9-16-10l-11%202%201%201h-2c-4-1-4%202%200%203l4%203%203%202c2%200%204%202%204%203l-2%201v3c-1%201-1%201-2-1-1-4-7-8-12-8h-7c-4-1-8%200-6%201%203%203%201%204-3%202-3-2-4-2-5-1l-7%201h-3c3%202%204%203%200%203l-5-2h-2l2%202c2%202%202%202%200%202l-4-2c-3-3-10-1-11%203-1%202-3%202-6-1H2c-2%200-2%200-1%201v2L0%20478v122h401V389a1987%201987%200%2000-5-210l-2%201c-2%200-2%200-1%201v2l-1-1-2-1-2-2c0-1%203-3%204-1%200%202%203%201%203-1-1-2-1-2%202-1l3%201%201-89V0h-94a5830%205830%200%2000-88%202l8%205%204%203%201%201-2%201-7-2-5-1-3-2-7-5%202-1c1-1-46-1-104-1H0v82m207-18c0%202-5%205-10%207-2%200-2%200%200%201l4%203h2l2-1v-1l-2-1h-2c0-2%204-1%206%201l4%201c2%200%204%202%202%202l-1%202h3v-2c1-1%200-2-2-3l-3-2h20l-3-1-5-1-2-2h2c4-1%201-3-4-2l-9-1h-2m155%2031c-2%200-3%203%200%203v2l-2%203c0%202%200%202%202%200%202-1%203-2%208-1%205%200%206%200%207-2%202-2%202-2%200-4-2-1-11-2-15-1m-249%206h-2v3c-2%201-1%202%201%202l2-1%201-1v2c0%202%200%202%203%202%202%200%203%200%203-2l1-2v2h1c2-1%202-1%202%201l1%202%201%202h1v-2c-1-1-1-2%201-3v-1c-2%200-2%200-1-1v-1a3865%203865%200%2001-8-1c-1%202-1%202-1%200s0-2-2-2h-2c-2-2-3-1-2%201m61%2012l6%206%201-2%201-2c1%200%205%208%204%2010%200%201%200%202%202%202v1l-1%201%202%202c0%202%201%202%202%202l3%201c0%205%200%205%201%203s3-2%204-2c5%202-1-6-8-9-2-2-3-3-3-5l-1-5v-1c2%200%207%204%206%206l1%201%201-1h3c1%202%202%202%202%201%201-1-1-4-7-7-2-2-17-3-19-2m130%2037l-2%204c0%202-1%203-1%201%200-3-2-2-7%200-4%202-4%202-11%201l-8-2c-1%202%201%203%204%203l8%202%205%202-4-1c-5%200-11%202-11%204s0%202%203%200h2l1-1h6c3-1%204-1%208%201%208%204%2018%207%2021%205%202-1%202-1-1-1-5%200-24-6-25-8s5-4%207-4v3c-1%202%200%203%202%201%201-1%203-2%204-1l1-2c-1-2-1-2%202-2s3%200%202-2c-1-1-2-2-3-1-2%200-2%200-1-1%202-2%202-2%200-2l-2%201m-87%204h-40c-24%200-26%201-25%2017l-1%2011v7a2773%202773%200%20002%2055v2h97v-12c0-11%200-12%202-13l1-2-2-2-1-3-1-12v-11l4%201%204-1-5-1c-3%200-3%200-3-4v-3l2%202c2%202%203%203%206%203%205%200%205-2%201-2l-4-2%201-1c1%201%202-2%201-4l-1-1c0%202-2%201-2-1l-2-2c-2%200-2-1-2-3%200-3%201-3%206-3l1-1h2l1%202c-1%201%201%202%203%201%201-1%203%200%204%201l4%202c2%200%202-2%201-2-3-1-6-3-6-5s-3-3-7-3l-4-2-3-3c-2%200-3-1-3-2l-6-4-25%201m-25%205h-16c-16%200-18%200-15%203h35a554%20554%200%200146%200l1-2v-1a613%20613%200%2000-51%200m-104%208c-1%202%201%204%204%204%202-1%207%201%209%205s4%205%204%202c0-2%200-2%201%200l1%203%201-3%201-2%202%202%203%202%202%202%202%202%201-2c-1-3%201-3%205%200%202%202%203%202%203%201%201-1%200-2-1-2-1-1-2-1-1-2l-4-1h-4l2-1c1%200%202%200%201-1l-2-1h-6l-4-2h3c3%200%203%200%202-1l-6-1h-3l1-1v-1l-1-2c1-2-1-1-2%200s-2%202-4%201h-3l-2-1h-5m230%205c-4%205-7%206-9%205l-2%202c-1%204-1%204%201%204%202-1%206%200%205%201h-1l-2%202c-1%202-2%203-6%204-4%200-10%203-8%203h6c1-2%202%200%201%202l1%202%201-1h2c2%200%202%200%201-2%200-2%200-3%203-4l3-4%202-2%201-2c-1-3%203-7%206-6l2-1c0-2-1-2-2-2-2%201-4-1-1-1%201-1%202-4%200-4l-4%204m-293-1h-2c-1%202-1%203%201%203l1%201%202%203%202%202-3%201-2%201-4-1c-5-2-7-3-7%200l1%201%203%201c7%206%209%207%207%202l1-2h2l2%203%203%202v-3l-1-4v-1l1-1h-1c-2%200-2%200-2-2l-1-5c-2-3-2-3-3-1m37%202h-2c-2%200-2%200-1%204v5l-2-3c-3-3-6-4-7-1v6c1%201%201%201%201-1l2%201%202%202v-3l1-2%202%202c2%202%203%203%203%201l2-2%201%203c0%203%200%203%201%202h4c2%202%203%202%203%200%200-3-1-5-3-5l-1-3c0-1%200-2%201-1l2-1c1-1%201-1%202%201%201%201%202%202%203%201v-5c-2-1-13-2-14-1m-52%2012l-1%202v1l1%203-1%202H8c-1%202%203%205%204%204l3%202%202%201%202%202%201%201c0-2%202-1%202%201l2%201%204%201c3%202%203%202%203%200h2c1%201%201%201%201-1l2%201h2c0-1%201-1%202%201l2%201v-1c-1-1%200-2%201-3%201-2%201-2%202-1%201%202%201%203-1%204-1%202-1%202%202%204l4%202v-3c1-2%202-2%203-1%202%200%201-1-1-3l-4-4h2c4%200%204-1-1-5l-3-4c1-2-6-2-7%200s-2%201-1-1l-1-2-2%201-1%201c-1%200-3%200-5%202l-4%202v1l2%201c0%202-3%201-5-1l-6-4-3-2c3%200%203-3%201-4-3-3-4-3-4-2m332%206c-2%202-1%203%201%203%202%201%202%201%201%203l-2%203-3%203-3%202h2l3-1h3l1-4v-3l2%202%202%202v-2c0-4%205-4%206%200%201%202%203%202%203-1l1-2c1-1-1-1-4-2l-5-1-2-1-3-1h-3m-99%204l-1%201-2-1h-67c-2-2-14%201-12%203l-2%201v8l-1-4c0-3%200-3-1-1v5l2%2010%201%208v-7l1-6v-1l-1-1a763%20763%200%200183%200v-10l-1-2%202%201c1%201%201%200%201-2%200-5-1-5-2-2m-182%203l-4%201c-2%200-2%200-1%201l2%201c-1%200%200%202%202%202l1%203v3l-1%202-1%204-2%203-1-2v-1l-3%202v2l-1%201v10c-1%200-3-2-3-4l-1-2c-1%201-7-1-9-3s-2-2-3-1-2%201-3-1c-2-1-4%200-2%202l1%201%203%201%202%205%202%201c1-1%201%200%201%201%200%202%200%202%201%201%202-3%203-2%202%201l1%202h1l2%202%202-2%201-2c2%200%202%201%202%203v4l1-3%202-2%202%202%202%201%201%201%201-3-1-2-1-1c0-3%201-2%203%200l3%202-3-7c-9-1-10-2-8-7%201-2%201-2%203%200l1%202v1l2-2%201-2c1-1%201%200%201%202l1%204%201-2c0-2%200-2%202-1%203%202%204%200%202-2-3-3-1-2%202%200l3%203%202-2v-3c-2%200-1-2%201-2s2-1-2-5l-3-4%204%202%203%203-2-7-1-2c1-1%200-1-1-1-2%200-4-2-1-2l-2-1h-9c1-2-1-3-1-1m250%208l-6%204-3%202-3%203-2%202c-2%200-1%202%202%202%203%201%205%200%203-1v-2h1c1%201%202%200%204-1l5-2%202-2%201-2%202-2c1-3-2-3-6-1M79%20218c-1%201%202%203%203%203l2%201-2%201c-1%200-2%200-1%202l-2%201c-2-1-4%200-9%203l1%202%201%204%202%205%203%204%202%201%202-1%201-1%201-2%205%205%201%201%201-3%202-3%201-1%201-1%201%201h1l3-1%201%202h-2l-1%201%204%202c2%201%203%202%203%204l1%202%203%202c2%203%203%201%201-4l-4-4c-2-1-2-1%200-4v-6c1-2%201-2-1-2s-3%201-3%202c0%203-4%203-4%200-1-2%200-2%201-2%202%200%202%200%200-1v-2l2-1-1-1-1-1c0-2%200-2-1-1h-1c0-2-4-3-8-3l-3-2c-1-2-5-3-6-2m233%2015c-2%200-3%201-3%202s-3%203-9%204c-7%202-8%205-1%204h5l7-3%201-1%202-2%201-2c2-1%202-3%200-3l-3%201m-159%2081v66l3%203%204%203%2030-1%2031%201c0%203%202%202%202%200-1-1%200-2%2011-2l12-1c0-1%201-2%203-2l2-1v-28a792%20792%200%2000-1-48%20843%20843%200%2001-2-57c-2%200-4%203-4%206-1%204-3%204-3-1%200-4%200-4-1-2l-1%203v-3l-1%2013c0%2010%200%2014-1%2013l-1-5c1-7%200-21-1-20h-1c0-1-14%200-17%202-1%201-1%201%201%201s2%200%201%201c-3%202-4%201-4-3%200-3-1-4-3-4l-3%201c0%202-1%202-7%202s-7%200-6-1c0-2-1-2-3-2l-4%201v6c-1%203-1%203-1%200s0-3-5-2l-4-1-1-2-1%201v3l-1-1c0-2-1-2-4-2l-4-1c0-5-2%204-2%2013v10l-1-11c-1-14-1-13-2-13l-3%205-1%204v-5c0-3%200-4-1-3h-1c0-2-2-3-4-3v67M46%20256c-2%202%200%205%203%205%205%200-4%203-9%203s-6%201-4%203c1%200%201%201-1%201-2%201-2%201-1%202%201%200%201%201-1%202l-2%201h2c2%200%202%200%201%201l-1%203%201%202%202-2%202-2%203-3c1-2%202-3%203-2l3-1%204-1%202-2c1-1%201-1%202%201l1%201c0-2%205-2%207%201%201%201%201%201%202-1s1-2%203%200%202%202%207-1l-1-1v-2l-2-1c-2-1-2-1-1-2%202-1-2-2-13-2-8-1-10-1-9-3l-1-1-2%201m265%209l2%202h-2l-3%202v3l1%202%201%201%201-3c0-2%201-3%202-3l1%202c0%203%201%205%202%204l1-2c0-2%200-2%202%200h2l1%201c2%202%205%202%205%200%200-1%200-2-1-1%200%202-1%201-3-2v-4c2-1%201-2-2-2h-3l-5-1c-5%200-5%200-2%201m27%200l2%201h-4l-2-1c-1%201%202%204%204%204s3%202%200%202v1l1%201c-1%201-2%202-1%204%200%204%203%204%203%201s3-5%203-2l2%203%201-1c-1-1%200-2%202-2%203-1%204-6%201-6l-2-2c1-1-6-4-9-4-2%200-2%200-1%201M91%20280h-1l-8%203c-2%202-3%202-4%200-2-1-2-1%200-1%201%201%202%200%203-1h-6c-8%200-8%200-9%202v2l-3%202c-4%202-5%204-3%204l3-1h2l5%201c5%200%207%201%205%202-1%201-1%201%201%201%203%200%203%200%203%202v3h1c0-3%203-2%204%201%200%203%202%203%202%200%200-2%200-2%202-1h3l-1-1-2-1h-1l-1-1h-3l-2-1-1-2-3-1-3-3c-3-1-3-1%202-1%205%201%206%201%206-1v-1l1%203v5l1-2%201-4v-1l1-1c2%200%202%201%201%204l1%204%201-3c0-2%200-2%201%200l5%207c1%200%201-3-1-4-2-2-1-3%202-3%201%200%202%200%201-1l-3-3c0-2-2-3-3-3l1-1h3l-2-2-2-1m146%2071v24h-3l-35%201h-32v-7l-1-7v15h73v-24l-1-25-1%2023m-59%201c-1%201%200%201%201%202l2%202%205%201h6l15%201%2015-1c1-2%202-2%202-1%201%201%201%200%202-1l1-4a446%20446%200%2000-49%201M0%20478\\'%20fill=\\'%23d3d3d3\\'%20fill-rule=\\'evenodd\\'/%3e%3c/svg%3e'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Royal Mail\"\n        title=\"Royal Mail\"\n        src=\"/static/869529d9566f378d5902052938389730/72e01/royal-mail-unsplash.jpg\"\n        srcset=\"/static/869529d9566f378d5902052938389730/e4a55/royal-mail-unsplash.jpg 256w,\n/static/869529d9566f378d5902052938389730/36dd4/royal-mail-unsplash.jpg 512w,\n/static/869529d9566f378d5902052938389730/72e01/royal-mail-unsplash.jpg 1024w,\n/static/869529d9566f378d5902052938389730/ac99c/royal-mail-unsplash.jpg 1536w,\n/static/869529d9566f378d5902052938389730/0f98f/royal-mail-unsplash.jpg 1920w\"\n        sizes=\"(max-width: 1024px) 100vw, 1024px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span>\n    <figcaption class=\"gatsby-resp-image-figcaption\">Royal Mail</figcaption>\n  </figure></p>\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's also easy to use Markdown to write about Markdown's own syntax.</p>\n<div class=\"gatsby-highlight\" data-language=\"shell\"><pre class=\"language-shell\"><code class=\"language-shell\">tell application <span class=\"token string\">\"Foo\"</span>\n    beep\nend tell</code></pre></div>\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'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 class=\"language-text\">*</code>) and underscores (<code class=\"language-text\">_</code>) as indicators of\nemphasis. Text wrapped with one <code class=\"language-text\">*</code> or <code class=\"language-text\">_</code> will be wrapped with an\nHTML <code class=\"language-text\">&lt;em&gt;</code> tag; double <code class=\"language-text\">*</code>'s or <code class=\"language-text\">_</code>'s will be wrapped with an HTML\n<code class=\"language-text\">&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 class=\"language-text\">`</code>).\nUnlike a pre-formatted code block, a code span indicates code within a\nnormal paragraph. For example:</p>\n<p>Use the <code class=\"language-text\">printf()</code> function.</p>\n<div class=\"gatsby-resp-iframe-wrapper\" style=\"padding-bottom: 66.66666666666666%; position: relative; height: 0; overflow: hidden; \" > <iframe src=\"https://sunflower-business-mobi.netlify.app/\" style=\" position: absolute; top: 0; left: 0; width: 100%; height: 100%; \"></iframe> </div>","excerpt":"Overview Philosophy Markdown is intended to be as easy-to-read and easy-to-write as is feasible. Readability, however, is emphasized above all else…","frontmatter":{"date":"May 09, 2020","slug":"/markdown","title":"Markdown: Syntax","description":null,"featuredImage":{"childImageSharp":{"gatsbyImageData":{"layout":"fullWidth","backgroundColor":"#f8b8c8","images":{"fallback":{"src":"/static/905b9e3012fc63a0eef11c8a5570748c/c6dfc/mike-dorner-sf_1ZDA1YFw-unsplash.jpg","srcSet":"/static/905b9e3012fc63a0eef11c8a5570748c/f7860/mike-dorner-sf_1ZDA1YFw-unsplash.jpg 750w,\n/static/905b9e3012fc63a0eef11c8a5570748c/cb752/mike-dorner-sf_1ZDA1YFw-unsplash.jpg 1080w,\n/static/905b9e3012fc63a0eef11c8a5570748c/7101f/mike-dorner-sf_1ZDA1YFw-unsplash.jpg 1366w,\n/static/905b9e3012fc63a0eef11c8a5570748c/c6dfc/mike-dorner-sf_1ZDA1YFw-unsplash.jpg 1920w","sizes":"100vw"},"sources":[{"srcSet":"/static/905b9e3012fc63a0eef11c8a5570748c/dc04b/mike-dorner-sf_1ZDA1YFw-unsplash.webp 750w,\n/static/905b9e3012fc63a0eef11c8a5570748c/34ba0/mike-dorner-sf_1ZDA1YFw-unsplash.webp 1080w,\n/static/905b9e3012fc63a0eef11c8a5570748c/98538/mike-dorner-sf_1ZDA1YFw-unsplash.webp 1366w,\n/static/905b9e3012fc63a0eef11c8a5570748c/f0c2d/mike-dorner-sf_1ZDA1YFw-unsplash.webp 1920w","type":"image/webp","sizes":"100vw"}]},"width":1,"height":0.6182291666666666}}}}}},"pageContext":{"id":"ba5cadf6-fa42-555a-a075-bbdc458dc5ec","previous":{"id":"a4563f7a-4078-581f-a984-93a18afde8cd","frontmatter":{"slug":"/new-post","template":"blog-post","title":"Neon in Games"}},"next":{"id":"ce56c096-4a79-5aaa-94c0-9452e6d50fbb","frontmatter":{"slug":"/post-no-image","template":"blog-post","title":"Plant on my desk is a friend"}}}},"staticQueryHashes":["228695001","2744905544","358227665"]}