Markdown workshop

Moonshot·2022년 4월 10일
0

Basic

목록 보기
2/2
post-thumbnail

6 Headings.

head#

head##

head###

head####

head#####
head#######

Horizontal Line

---

Text Formatting

italic * *
bold ** **
italic and bold *** ***
bold italic bold ** * * **
strikethrough ~~ ~~


Ordered List

  1. One
  2. Two
  3. Three
  4. Four
1. One
2. Two
2. Three
3. Four

Unordered List

  • One
  • Two
  • Three
- One
- Two
- Three

Code Formating

Inline: Use JavaScript map() on arrays.

	const a = (b) => {
    	return b x 5;
    };

Blockquote

Quote

Quote 2.

Quote 3.

Quote
Quote 2.
Quote 3.

Links

URL
codeSTACKr

[codeSTACKr](https://youtube.com/codestackr "codeSTACKr Links")

문서 내 이동 소문자 + 띄어쓰기 -
Ordered List

[Ordered List](#ordered-list)

Ref

codeSTACKr REF

[ref]: https://youtube.com/codestackr "codeSTACKr Links"
[codeSTACKr REF][ref]

images + url

[![](https://velog.velcdn.com/images/moonshot/post/f600797f-809b-4fc7-be68-46f4ee506366/image.jpeg)](https://codecats.xyz)

Table

packagesDescriptionVersion
leftcenterright
abc
| packages | Description | Version |
| :--- | :---: | ---:|
|left|center|right|
|a|b|c|

Checkbox

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

Comment

[comment here]: #

Toggle

🌈This is a Toggle. This is a content.
<details>
	<summary>
  		🌈This is a Toggle.
   	</summary>
  		This is a content.
</details>

profile
Jidoil

0개의 댓글