web-dev-qa-db-ja.com

Bitbucketでネストされたリストアイテムをマークダウンする方法は?

Bitbucketページからライブでブラウザで表示したときに、対応するインデントでレンダリングされたマークダウンネストリストアイテムを表示しようとしています。しかし、 それらの例pdated )を使用しているときでも、それがどのように機能するかわかりません:

* Item 1
* Item 2
* Item 3
  * Item 3a
  * Item 3b
  * Item 3c

アイテム3a-cのインデントを無視します。

bitbucket rendered list

私はそれをこのように見せたいです(構文はSEとGithubで完全にうまく機能します):

SE rendered list

list in list の例は特に受け入れられません:

1. Step 1
2. Step 2
3. Step 3
   * Item 3a
   * Item 3b
   * Item 3c

list in list on bb

ここに a repo があります。

91
Jeff Puckett

4つのスペースを使用します。

# Unordered list

* Item 1
* Item 2
* Item 3
    * Item 3a
    * Item 3b
    * Item 3c

# Ordered list

1. Step 1
2. Step 2
3. Step 3
    1. Step 3.1
    2. Step 3.2
    3. Step 3.3

# List in list

1. Step 1
2. Step 2
3. Step 3
    * Item 3a
    * Item 3b
    * Item 3c

更新されたレポのスクリーンショットは次のとおりです。

screenshot

ありがとう @ Waylancomment は正しかった。

132
Jeff Puckett

Nested lists, deeper levels: ---- leave here an empty row * first level A item - no space in front the bullet character * second level Aa item - 1 space is enough * third level Aaa item - 5 spaces min * second level Ab item - 4 spaces possible too * first level B item

ネストされたリスト、より深いレベル:

  • 最初のレベルAアイテム-箇条書き文字の前にスペースなし
    • 2番目のレベルのAaアイテム-1スペースで十分です
      • 3番目のレベルのAaaアイテム-5スペース分
    • 第2レベルのAbアイテム-4つのスペースも可能
  • 最初のレベルBアイテム

    Nested lists, deeper levels:
     ...Skip a line and indent eight spaces. (as said in the editor-help, just on this page)
    * first level A item - no space in front the bullet character
     * second level Aa item - 1 space is enough
         * third level Aaa item - 5 spaces min
        * second level Ab item - 4 spaces possible too
    * first level B item
    
0
Franta