HiveBrain v1.2.0
Get Started
← Back to all entries
snippetjavascriptTip

Markdown Cheatsheet

Submitted by: @import:30-seconds-of-code··
0
Viewed 0 times
markdownjavascriptcheatsheet

Problem

Markdown is a lightweight markup language with plain text formatting syntax, easily convertible to various output formats, such as HTML. In the programming world, it's widely used to format documentation, README files, GitHub issues, pull requests and comments. While there are various flavors of Markdown, the basic syntax is shared across implementations.
> [!TIP]
>
> As most users will be using GitHub Flavored Markdown (GFM), a more complete reference can be found here. You may also want to check out Markdown Guide for a more comprehensive overview of Markdown syntax.
`

Solution

# Heading 1

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6


>
> As most users will be using GitHub Flavored Markdown (GFM), a more complete reference can be found here. You may also want to check out Markdown Guide for a more comprehensive overview of Markdown syntax.

Block code

Code Snippets

# Heading 1

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6
This is a paragraph.

This is another paragraph.
**Bold text** or __Bold text__

*Italic text* or _Italic text_

***Bold and italic text*** or ___Bold and italic text___

Context

From 30-seconds-of-code: markdown-cheatsheet

Revisions (0)

No revisions yet.