You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Display Jupyter Notebook files with [`nbconvert`](https://github.com/jupyter/nbconvert):
150
+
148
151
```ini
149
152
[markup.jupyter]
150
153
ENABLED = true
@@ -156,9 +159,11 @@ ALLOW_DATA_URI_IMAGES = true
156
159
```
157
160
158
161
## Customizing CSS
159
-
The external renderer is specified in the .ini in the format `[markup.XXXXX]` and the HTML supplied by your external renderer will be wrapped in a `<div>` with classes `markup` and `XXXXX`. The `markup` class provides out of the box styling (as does `markdown` if `XXXXX` is `markdown`). Otherwise you can use these classes to specifically target the contents of your rendered HTML.
162
+
163
+
The external renderer is specified in the .ini in the format `[markup.XXXXX]` and the HTML supplied by your external renderer will be wrapped in a `<div>` with classes `markup` and `XXXXX`. The `markup` class provides out of the box styling (as does `markdown` if `XXXXX` is `markdown`). Otherwise you can use these classes to specifically target the contents of your rendered HTML.
160
164
161
165
And so you could write some CSS:
166
+
162
167
```css
163
168
.markup.XXXXXhtml {
164
169
font-size: 100%;
@@ -184,6 +189,7 @@ And so you could write some CSS:
184
189
```
185
190
186
191
Add your stylesheet to your custom directory e.g `custom/public/css/my-style-XXXXX.css` and import it using a custom header file `custom/templates/custom/header.tmpl`:
0 commit comments