<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: daveshaul100</title>
    <description>The latest articles on DEV Community by daveshaul100 (@daveshaul100).</description>
    <link>https://dev.to/daveshaul100</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F599822%2F3b86d38b-700e-453c-ab81-06224debc776.jpeg</url>
      <title>DEV Community: daveshaul100</title>
      <link>https://dev.to/daveshaul100</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/daveshaul100"/>
    <language>en</language>
    <item>
      <title>My first post while learning Markdown on Scrimba</title>
      <dc:creator>daveshaul100</dc:creator>
      <pubDate>Fri, 19 Mar 2021 15:55:35 +0000</pubDate>
      <link>https://dev.to/daveshaul100/my-first-post-while-learning-markdown-on-scrimba-46il</link>
      <guid>https://dev.to/daveshaul100/my-first-post-while-learning-markdown-on-scrimba-46il</guid>
      <description>&lt;p&gt;Last night I was going through my emails and noticed that &lt;a href="https://scrimba.com/" rel="noopener noreferrer"&gt;Scrimba&lt;/a&gt; has just released a new course teaching Markdown. I've been meaning to learn Markdown for a while now and this seemed like a good opportunity - especially as the course is free for the first week of release.&lt;/p&gt;

&lt;p&gt;What I didn't now was that the course uses dev.to posts as the main asset for exercising that learning outside of Scrimba. &lt;/p&gt;

&lt;p&gt;So here I am, my first post on dev.to. Right now I have no idea if this post is going to end up with any content worth reading so I'll apologise now for that.&lt;/p&gt;

&lt;p&gt;So if I want to use &lt;strong&gt;bold text&lt;/strong&gt; I have to enclose the text within **two asterisks** or __two underscores__. &lt;em&gt;Italic text&lt;/em&gt; is enclosed by one asterisk or underscore. Although using underscores is allowed to markdown bold or italic text it is most common to use asterisks. &lt;/p&gt;

&lt;p&gt;If you want to use markdown language directly within your paragraphs as I have above you have to use a backslash as an escape character.&lt;/p&gt;

&lt;p&gt;&lt;del&gt;No I didn't make a mistake&lt;/del&gt; this is just an example of how to use two tildes ~~ to markdown strikethrough text.&lt;/p&gt;

&lt;p&gt;Although I rarely come across markdown, &lt;a href="https://en.wikipedia.org/wiki/Markdown" rel="noopener noreferrer"&gt;Wikipedia&lt;/a&gt; tells me that it is widely used in blogging, instant messaging, forums, documentation and readme files.&lt;/p&gt;

&lt;p&gt;Adding horizontal rules and blockquotes couldn't be easier, using --- for the line and &amp;gt; for the blockquote.&lt;/p&gt;




&lt;blockquote&gt;
&lt;p&gt;“Weeks of coding can save you hours of planning” - Unknown &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Markdown can also be used for ordered and unordered lists.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;List item 1&lt;/li&gt;
&lt;li&gt;List item 2&lt;/li&gt;
&lt;li&gt;List item 3&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;unordered 1&lt;/li&gt;
&lt;li&gt;unordered 2&lt;/li&gt;
&lt;li&gt;unordered 3&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Ordered list items should be preceded by a number (1.), and unordered list items should be preceded by a hyphen. Sublists can be included by starting with a tabbed indent.&lt;/p&gt;

&lt;p&gt;Surrounding code blocks with three backticks before and after will give you...&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight c"&gt;&lt;code&gt;   &lt;span class="n"&gt;main&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="n"&gt;printf&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"hello, world&lt;/span&gt;&lt;span class="se"&gt;\n&lt;/span&gt;&lt;span class="s"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Some versions of extended markdown even offer syntax highlighting within code blocks. Above I've include the letter "C" after the opening backticks to show the syntax highlighting.&lt;/p&gt;

&lt;p&gt;Markdown lets you easily add images. The format for this is ![Alt text of image](put-link-to-image-here)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fsnq5gst9tw245shyavk2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fsnq5gst9tw245shyavk2.png" alt="Markdown Logo"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Using extended markdown tables can be added, although this may not work everywhere. The table below should have the middle column text aligned to the center.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Syntax&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Test Text&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Header&lt;/td&gt;
&lt;td&gt;Title&lt;/td&gt;
&lt;td&gt;Here's this&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Paragraph&lt;/td&gt;
&lt;td&gt;Text&lt;/td&gt;
&lt;td&gt;And more&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Shortcodes can be used to add emojis 😃 but its a roll of the :dice: as whether they all work.&lt;/p&gt;

&lt;p&gt;Well that brings me to the end of the &lt;a href="https://scrimba.com/" rel="noopener noreferrer"&gt;Scrimba&lt;/a&gt; course. I'm not sure how helpful this will be to everyone - lets face it you already know most of it if you're posting on dev.to. &lt;/p&gt;

&lt;p&gt;I'll finish by posting a link to a useful guide to &lt;a href="https://www.markdownguide.org/extended-syntax/" rel="noopener noreferrer"&gt;Extended Markdown&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;Hoping that some of you find this useful.&lt;/p&gt;

&lt;p&gt;Dave out.&lt;/p&gt;

</description>
      <category>markdown</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
