如何在BitBucket中的列表项下嵌套代码块?

时间:2016-11-20 18:23:47

标签: markdown bitbucket

虽然这个问题的关键字组合有几个问题/答案,但我没有看到直接提出相同问题或答案的问题。

我想在列表项下嵌套代码块。当我遵循这个answer时,我找不到我正在寻找的效果。在下面的图像中,我不希望代码块中的前导空格,我希望框本身在列表项下缩进。我如何实现这一目标?

enter image description here

而且,这是实际的MD:

** Help Page **

* This is a list item that has a code block going with it

```
#!c#
        try
        {
            DoSomething(passThis, andThis);
        }
        catch (Exception ex)
        {
            ex.Log();
        }

```

1 个答案:

答案 0 :(得分:4)

使用缩进的代码块,而不是受防护的代码块(```)。缩进四个空格以嵌套在列表项内,另外四个用于表示代码块:

**Help Page**

* This is a list item that has a code block going with it

        #!c#
        try
        {
            DoSomething(passThis, andThis);
        }
        catch (Exception ex)
        {
            ex.Log();
        }