JonathanBytes

Contáctame
A living room with a lot of plants generated by AI

menos de un minuto leyendo

Markdown Cheat Sheet

Contenido

Basic Syntax

These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.

Heading

H2

H3

H4

Bold

bold text

Italic

italicized text

Blockquote

blockquote

Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List

Code

This is a code tag for tiny code mentions.

Horizontal Rule


Markdown Guide

Image

alt text

Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

Table

SyntaxDescription
HeaderTitle
ParagraphText

Fenced Code Block

JSON

json
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

Python

Python
import numpy as np

x = np.pi * 32

for i in range(x)
  print('Hello')

JavaScript

JavaScript
function Hello() {
  console.log('Hello')
}

Footnote

Here's a sentence with a footnote. 1

Here's a second sentence with a Lorem ipsum dolor sit amet, qui minim labore adipisicing minim sint cillum sint consectetur cupidatat. 2

Heading ID

My Great Heading

Definition List

term : definition

Strikethrough

The world is flat.

Task List

Emoji

That is so funny! 😂

(See also Copying and Pasting Emoji)

Highlight

I need to highlight these ==very important words==.

Subscript

H2O

Superscript

X^2^

Footnotes

  1. This is the footnote.

  2. I use lorem for testing.

Volver