marromugi / middle

Markdown Parser
0 stars 0 forks source link

よくあるマークダウンの記法を調べる #1

Open marromugi opened 1 year ago

marromugi commented 1 year ago

マークダウンの記法を調べてまとめる

marromugi commented 1 year ago

CommonMark

https://commonmark.org/help/

Github

https://docs.github.com/ja/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax https://gist.github.com/mignonstyle/083c9e1651d7734f84c99b8cf49d57fa

Qiita

https://qiita.com/Qiita/items/c686397e4a0f4f11683d

Zenn

https://zenn.dev/zenn/articles/markdown-guide

marromugi commented 1 year ago

共通してあるエレメント

エレメント(見出し)
# 見出し1
## 見出し2
### 見出し3
#### 見出し4

エレメント(リスト)
- Hello!
- Hola!
  - Bonjour!
  * Hi!

エレメント(数字付きリスト)
1. First
2. Second

エレメント(リンク)
[アンカーテキスト](リンクのURL)

エレメント(画像)
![altテキスト](https://画像のURL)

エレメント(テーブル)
| Head | Head | Head |
| ---- | ---- | ---- |
| Text | Text | Text |
| Text | Text | Text |

エレメント(コードブロック)
```js
console.log('Hello,World!')
``

エレメント(引用)
> 引用文
> 引用文

エレメント(区切り)
-----

エレメント(インライン)
*イタリック*
**太字**
~~打ち消し線~~
インラインで`code`を挿入する