All memories

Markdown Playground

 — #markdown#learning



Code

```javascript
function example() {
  console.log('Hello, world!');
}
```
function example() {
  console.log('Hello, world!');
}
More examples...

  ```markdown
  ```python
  ```html
  ```css
  ```java
  ```c
  ```cpp
  ```bash
  ```shell
  ```yaml
  ```json
  ```markdown
  ```plaintext
  ```diff
  ```makefile
  ```dockerfile
  ```nginx
  ```apache
  ```apacheconf


Back to top


Headers

# Header 1

## Header 2

### Header 3

#### Header 4

##### Header 5

Header 1

Header 2

Header 3

Header 4

Header 5


Back to top


Bold

**Bold Text**

Bold Text


Back to top


Italic

_Italic Text_

Italic Text


Back to top


Blockquotes

> This is a blockquote.

This is a blockquote.


Back to top


Lists

Unordered list:

- Item 1
- Item 2
  • Item 1
  • Item 2

Ordered list:

1. First item
2. Second item
  1. First item
  2. Second item


Back to top


Links

[OpenAI](https://openai.com)

OpenAI


Back to top


Emphasis

Bold and italic combined:

**_Bold and Italic_**

Bold and Italic


Back to top


Horizontal Rule

---


Back to top


Line Break

Line 1 <br /> Line 2

Line 1
Line 2


Back to top


Images

![Alt Text](https://nicholasragland.com/favicons/web-app-manifest-512x512.png)

Alt Text

<img src="https://nicholasragland.com/assets/demo.gif" alt="Demo" />
Demo


Back to top


Tables

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| Row 1    | Data 1   | Data 2   |
| Row 2    | Data 3   | Data 4   |
Column 1 Column 2 Column 3
Row 1 Data 1 Data 2
Row 2 Data 3 Data 4


Back to top


Footnotes

Here's a sentence with a footnote.[^1]

[^1]: This is the footnote text.

Here's a sentence with a footnote.1


Back to top


Definition Lists

Term 1
: Definition for term 1

Term 2
: Definition for term 2

Term 1 : Definition for term 1

Term 2 : Definition for term 2


Back to top


Task Lists

- [x] Task 1
- [ ] Task 2
  • Task 1
  • Task 2


Back to top


Emoji

🥺👾🤖👻

🥺👾🤖👻


Back to top


HTML

<div>
    <h1>Heading</h1>
    <p>paragraph</p>
</div>

Heading

paragraph


Back to top


Escaping

\*Escaped asterisk\*

*Escaped asterisk*


Back to top


Backslash Escapes

\*
\\
\`
\_
\{
\}
\[
\]
\(
\)
\#
\+
\-
\.
\!

*

\

`

_

ect.....


Back to top


Automatic URL Linking

https://openai.com

https://openai.com


Back to top


Strikethrough

~~Strikethrough Text~~

Strikethrough Text

Back to top




  1. This is the footnote text.