0
0

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 3 years have passed since last update.

Bitbucketのmarkdownで順序リストの中にコードブロックを書きたい

Posted at

順序リストの中にコードブロックを書くと、ナンバリングがリセットされてしまう

NG(半角スペース4個)

VSCodeやQiitaではこれで問題なく表示される

1. list1
2. list2
    ```php
    $a = $b + $c;
    echo $a;
    ```
3. list3

image.png


OK(半角スペース8つと空行)

半角スペース8つで自動的にコードブロックになる。
前後に空行が必要。
言語表記は#!#で囲むことができるが、Bitbucketにハイライト機能がないので無意味かも?
逆にVSCodeやQiitaでは#!#が使えないので不要かもしれない。

1. list1
2. list2

        #!php#
        $a = $b + $c;
        echo $a;

3. list3

image.png


0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?