✏️ Markdown Guide
作成日: 2021/06/30
0

This page explains Markdown of Ticketnote.

Reference:What is Markdown?

Headings

# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4

Unordered Lists

- HTML
- CSS
  - Javascript
  * Java
  • HTML
  • CSS
    • Javascript
    • Java

Ordered Lists

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

Checkbox

- [x] HTML
- [ ] CSS

If it is the text you created, you can check.

Blockquotes

> You can quote by putting > at the beginning of the sentence.

You can quote by putting > at the beginning of the sentence.

Links

[text](url)

text

Emphasis

*Italic*
**Bold**
***Bold and Italic***
~~strike~~
`single quote`

Italic
Bold
Bold and Italic
strike
single quote

Images

![alt](https://....)

sample

Tables

| Head | Head | Head |
| ---- | ---- | ---- |
| Text | Text | Text |
| Text | Text | Text |
Head Head Head
Text Text Text
Text Text Text

Code Block

  • You can insert a code block by sandwiching it with ```.
    • If you specify the language after ```, the decoration will be applied to the code.
    • example... ```js
const showMessage = () => {
  console.log("Hello");
};

Hi there. This is the official account of Ticketnote. This is a free service to record and share your programming learning. 🚀