<?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: lucaster</title>
    <description>The latest articles on DEV Community by lucaster (@lucaster).</description>
    <link>https://dev.to/lucaster</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%2F306132%2F64a82a63-b892-46fb-8a34-885089de4e25.png</url>
      <title>DEV Community: lucaster</title>
      <link>https://dev.to/lucaster</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lucaster"/>
    <language>en</language>
    <item>
      <title>Hello, World!</title>
      <dc:creator>lucaster</dc:creator>
      <pubDate>Wed, 09 Jul 2025 06:59:58 +0000</pubDate>
      <link>https://dev.to/lucaster/hello-world-2cjl</link>
      <guid>https://dev.to/lucaster/hello-world-2cjl</guid>
      <description>&lt;p&gt;Hello, World!&lt;/p&gt;

&lt;h1&gt;
  
  
  Markdown Cheat Sheet
&lt;/h1&gt;

&lt;p&gt;Thanks for visiting &lt;a href="https://www.markdownguide.org" rel="noopener noreferrer"&gt;The Markdown Guide&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for &lt;a href="https://www.markdownguide.org/basic-syntax/" rel="noopener noreferrer"&gt;basic syntax&lt;/a&gt; and &lt;a href="https://www.markdownguide.org/extended-syntax/" rel="noopener noreferrer"&gt;extended syntax&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Basic Syntax
&lt;/h2&gt;

&lt;p&gt;These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.&lt;/p&gt;

&lt;h3&gt;
  
  
  Heading
&lt;/h3&gt;

&lt;h1&gt;
  
  
  H1
&lt;/h1&gt;

&lt;h2&gt;
  
  
  H2
&lt;/h2&gt;

&lt;h3&gt;
  
  
  H3
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Bold
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;bold text&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Italic
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;italicized text&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Blockquote
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;blockquote&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Ordered List
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;First item&lt;/li&gt;
&lt;li&gt;Second item&lt;/li&gt;
&lt;li&gt;Third item&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Unordered List
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;First item&lt;/li&gt;
&lt;li&gt;Second item&lt;/li&gt;
&lt;li&gt;Third item&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Code
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;code&lt;/code&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Horizontal Rule
&lt;/h3&gt;




&lt;h3&gt;
  
  
  Link
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.markdownguide.org" rel="noopener noreferrer"&gt;Markdown Guide&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Image
&lt;/h3&gt;

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

&lt;h2&gt;
  
  
  Extended Syntax
&lt;/h2&gt;

&lt;p&gt;These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.&lt;/p&gt;

&lt;h3&gt;
  
  
  Table
&lt;/h3&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;/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;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Paragraph&lt;/td&gt;
&lt;td&gt;Text&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Fenced Code Block
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"firstName"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"John"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"lastName"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Smith"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"age"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;25&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Footnote
&lt;/h3&gt;

&lt;p&gt;Here's a sentence with a footnote. &lt;sup id="fnref1"&gt;1&lt;/sup&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Heading ID
&lt;/h3&gt;

&lt;h3&gt;
  
  
  My Great Heading {#custom-id}
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Definition List
&lt;/h3&gt;

&lt;p&gt;term&lt;br&gt;
: definition&lt;/p&gt;
&lt;h3&gt;
  
  
  Strikethrough
&lt;/h3&gt;

&lt;p&gt;&lt;del&gt;The world is flat.&lt;/del&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  Task List
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;[x] Write the press release&lt;/li&gt;
&lt;li&gt;[ ] Update the website&lt;/li&gt;
&lt;li&gt;[ ] Contact the media&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Emoji
&lt;/h3&gt;

&lt;p&gt;That is so funny! 😂&lt;/p&gt;

&lt;p&gt;(See also &lt;a href="https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji" rel="noopener noreferrer"&gt;Copying and Pasting Emoji&lt;/a&gt;)&lt;/p&gt;
&lt;h3&gt;
  
  
  Highlight
&lt;/h3&gt;

&lt;p&gt;I need to highlight these ==very important words==.&lt;/p&gt;
&lt;h3&gt;
  
  
  Subscript
&lt;/h3&gt;

&lt;p&gt;H~2~O&lt;/p&gt;
&lt;h3&gt;
  
  
  Superscript
&lt;/h3&gt;

&lt;p&gt;X^2^&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/pr42azVZi3o"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;




&lt;ol&gt;

&lt;li id="fn1"&gt;
&lt;p&gt;This is the footnote. ↩&lt;/p&gt;
&lt;/li&gt;

&lt;/ol&gt;

</description>
      <category>helloworld</category>
    </item>
  </channel>
</rss>
