File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ FROM gcr.io/deeplearning-platform-release/base-cpu:${BASE_TAG}
6
6
7
7
ADD clean-layer.sh /tmp/clean-layer.sh
8
8
ADD patches/nbconvert-extensions.tpl /opt/kaggle/nbconvert-extensions.tpl
9
+ ADD patches/template_conf.json /opt/kaggle/conf.json
9
10
10
11
# This is necessary for apt to access HTTPS sources
11
12
RUN apt-get update && \
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All cell metadata starting with '_kg_' will be included with its value ({key}-{v
4
4
as a class in the cell's DIV container
5
5
#}
6
6
7
- {% extends ' full.tpl ' %}
7
+ {% extends ' classic/index.html.j2 ' %}
8
8
{% block any_cell %}
9
9
<div class =" {% for k in cell[' metadata' ] if k.startswith(" _kg_" ) %} { { k} } -{ { cell[' metadata' ][k] | lower} } {% endfor %} " >
10
10
{ { super() } }
Original file line number Diff line number Diff line change
1
+ {
2
+ "base_template" : " classic" ,
3
+ "mimetypes" : {
4
+ "text/html" : true
5
+ },
6
+ "preprocessors" : {
7
+ "100-pygments" : {
8
+ "type" : " nbconvert.preprocessors.CSSHTMLHeaderPreprocessor" ,
9
+ "enabled" : true ,
10
+ "style" : " default"
11
+ }
12
+ }
13
+ }
You can’t perform that action at this time.
0 commit comments