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}
66
77ADD clean-layer.sh /tmp/clean-layer.sh
88ADD patches/nbconvert-extensions.tpl /opt/kaggle/nbconvert-extensions.tpl
9+ ADD patches/template_conf.json /opt/kaggle/conf.json
910
1011# This is necessary for apt to access HTTPS sources
1112RUN 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
44as a class in the cell's DIV container
55#}
66
7- {% extends ' full.tpl ' %}
7+ {% extends ' classic/index.html.j2 ' %}
88{% block any_cell %}
99 <div class =" {% for k in cell[' metadata' ] if k.startswith(" _kg_" ) %} { { k} } -{ { cell[' metadata' ][k] | lower} } {% endfor %} " >
1010 { { 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