increments / qiita-discussions

Discussion of opinions and requests for qiita.com
https://qiita.com
85 stars 4 forks source link

タスクリストをルーズにするとリストが壊れる #318

Closed kyntk closed 1 year ago

kyntk commented 2 years ago

Discussed in https://github.com/increments/qiita-discussions/discussions/309

Originally posted by **Yarakashi-Kikohshi** October 9, 2022 タスクリストはタイトな記述のみをサポートしており、ルーズな記述をサポートしていません。この問題は、ルーズにブロックを含める際に問題になることがあります。 ここで言う「タイト」と「ルーズ」は CommonMark と同等の意味を持ちます。 > A list is [loose](https://spec.commonmark.org/0.30/#loose) if any of its constituent list items are separated by blank lines, or if any of its constituent list items directly contain two block-level elements with a blank line between them. Otherwise a list is [tight](https://spec.commonmark.org/0.30/#tight). (The difference in HTML output is that paragraphs in a loose list are wrapped in `

` tags, while paragraphs in a tight list are not.) >> ![image](https://user-images.githubusercontent.com/75878492/194721172-e2d1927a-1c56-4a92-b547-98bb48462ed2.png)

サンプルコード ```markdown - [ ] タスク 1 - [ ] タスク 2 - [ ] タスク 3 - [ ] タスク 4 - [ ] タスク 5 ```