# Basic writing and formatting syntax<h1>Basic writing and formatting syntax</h1>## Headings<h2>Headings</h2>### A third-level heading<h3>A third-level heading</h3>Heading 2
---<h2>Heading 2</h2>Create sophisticated formatting for your prose and code on GitHub with simple syntax.<p>Create sophisticated formatting for your prose and code on GitHub with simple syntax.</p>**This is bold text**<strong>This is bold text</strong>_This text is italicized_<em>This text is italicized</em>***All this text is important***<strong><em>All this text is important</em></strong>~~This was mistaken text~~<del>This was mistaken text</del>This is a <sub>subscript</sub> text<p>This is a <sub>subscript</sub> text</p>This is a <sup>superscript</sup> text<p>This is a <sup>superscript</sup> text</p>> Text that is a quote<blockquote>
<p>Text that is a quote</p>
</blockquote>> [!NOTE]
> Useful information.<blockquote class="markdown-alert markdown-alert-note">
<p><strong>Note</strong></p>
<p>Useful information.</p>
</blockquote>
⚠️ Themarkdown-alert-*classes are GitHub-specific, not standard Markdown.
Use `git status` to list files.<p>Use <code>git status</code> to list files.</p>```markdown
git status
git add
```<pre><code class="language-markdown">
git status
git add
</code></pre>| Style | Syntax |
|------|--------|
| Bold | ** ** |<table>
<thead>
<tr>
<th>Style</th>
<th>Syntax</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bold</td>
<td><strong> </strong></td>
</tr>
</tbody>
</table>[GitHub Pages](https://pages.github.com/)<a href="https://pages.github.com/">GitHub Pages</a><img src="image.png" alt="Alt text">- George Washington
- John Adams<ul>
<li>George Washington</li>
<li>John Adams</li>
</ul>1. James Madison
2. James Monroe<ol>
<li>James Madison</li>
<li>James Monroe</li>
</ol>1. First item
- Nested item<ol>
<li>
First item
<ul>
<li>Nested item</li>
</ul>
</li>
</ol>- [x] Done
- [ ] Pending<ul>
<li>
<input type="checkbox" checked disabled> Done
</li>
<li>
<input type="checkbox" disabled> Pending
</li>
</ul>@github/support<a href="https://github.com/github/support" class="user-mention">@github/support</a>Here is a footnote[^1].
[^1]: My reference.<p>
Here is a footnote
<sup id="fnref-1">
<a href="#fn-1">1</a>
</sup>.
</p>
<section class="footnotes">
<ol>
<li id="fn-1">
<p>My reference.</p>
</li>
</ol>
</section>HTML Comments (Hidden Content)
<!-- This content will not appear --><!-- This content will not appear -->\*not italic\*<p>*not italic*</p>:+1:<img class="emoji" alt="👍" src="...">(GitHub replaces emoji with <img> tags.)