jupyter笔记本降价代码单元格背景颜色

时间:2019-10-10 19:32:50

标签: jupyter-notebook markdown

如果我在文本单元格中编写代码块,且代码引用如下所示

```java
//some code here
```

是否可以将所有此类代码单元的代码块背景颜色更改为浅灰色?

更新[10/12/19]

每个@vi_rises的注释,如果使用jupyter,则配置文件路径为:

.jupyter/custom/custom.css

在下面添加内容会更改文本行的背景颜色:

.rendered_html code.language-java {
    background-color: #e5e5e5;
}

降价单元格文字: Java代码部分开始

```java
/* HelloWorld.java
 */

public class HelloWorld
{
    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}
```

java code section end

输出如下所示: enter image description here

如果可能的话,我希望整个Java代码矩形区域!

1 个答案:

答案 0 :(得分:1)

将以下css属性添加到〜/ .ipython / profile_default / static / custom / custom.css下的custom.css文件中

BroadcastReceiver

您可以根据需要更改颜色。

before executing

after executing