16
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Qiitaで箇条書きの間に空行を入れたい

Posted at

Qiitaの記事に於いて、箇条書きの間に空行を入れたい。

然し、Markdownで次のように記述しても、間の空行は無視されてしまう。

【入力】

++



+

【出力】



そこで、HTMLの<br>タグを用い、次のように記述する。

【入力】

++<br/>

+

【出力】




又は、HTMLの改行コードの文字参照を用い、次のように記述する。

【入力】

++&#13;&#10;

+

【出力】



16
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?