有序列表中的受控代码块样式

时间:2013-05-13 01:40:05

标签: jekyll octopress

我在有序列表中使用fenced-code-blocks。我的代码是

1. Download and extract `jre-7u21-linux-i586.gz` to `/usr/java`

    Your `/usr/java` directory should look similar to this,

    ```
    /usr/java
      |-- jdk1.6.0_43
      |-- jre1.7.0_21
    ```

2. Tell `alternatives` that you have installed a new `java`

octopress配置设置为markdown时使用redcarpet(而不是。{ 默认rdiscount),以下是我看到的内容。

screenshot

正如您将注意到的那样,“行号垂直线”一直移动到 在代码块中。

  1. 如何将行号区域“移动”回到左侧,并实际显示 行号?
  2. 或者,如果那是不可能的,请你帮我删除 “右竖杆”一共吗?

1 个答案:

答案 0 :(得分:1)

看看这里:https://github.com/imathis/octopress/pull/814

希望它会有所帮助。


我发现最好的解决方案可能是使用html标签。使用插件解决这个问题非常困惑。请查看我的example1 example2

<ol>
<li> Download and extract `jre-7u21-linux-i586.gz` to `/usr/java`

    Your `/usr/java` directory should look similar to this,

    ```
    /usr/java
      |-- jdk1.6.0_43
      |-- jre1.7.0_21
    ```
</li>
<li> Tell `alternatives` that you have installed a new `java` </li>
</ol>