Skip to content

Commit 3d05890

Browse files
authored
Merge pull request #6318 from jtpio/fix-markdown
Fix rendering of markdown
2 parents cf62e9f + fd22453 commit 3d05890

File tree

4 files changed

+544
-437
lines changed

4 files changed

+544
-437
lines changed

app/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ async function main() {
125125
['@jupyterlab/fileeditor-extension:plugin'].includes(id)
126126
),
127127
require('@jupyterlab/mainmenu-extension'),
128+
require('@jupyterlab/markedparser-extension'),
128129
require('@jupyterlab/mathjax2-extension'),
129130
require('@jupyterlab/notebook-extension').default.filter(({ id }) =>
130131
[

app/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"@jupyterlab/json-extension": "~4.0.0-alpha.7",
4949
"@jupyterlab/mainmenu": "~4.0.0-alpha.7",
5050
"@jupyterlab/mainmenu-extension": "~4.0.0-alpha.7",
51+
"@jupyterlab/markedparser-extension": "~4.0.0-alpha.6",
5152
"@jupyterlab/mathjax2-extension": "~4.0.0-alpha.7",
5253
"@jupyterlab/notebook": "~4.0.0-alpha.7",
5354
"@jupyterlab/notebook-extension": "~4.0.0-alpha.7",
@@ -90,7 +91,7 @@
9091
"@lumino/widgets": "~1.31.1",
9192
"react": "~17.0.2",
9293
"react-dom": "~17.0.2",
93-
"yjs": "~13.5.27"
94+
"yjs": "~13.5.28"
9495
},
9596
"dependencies": {
9697
"@jupyter-notebook/application": "^7.0.0-alpha.1",
@@ -119,6 +120,7 @@
119120
"@jupyterlab/javascript-extension": "^4.0.0-alpha.7",
120121
"@jupyterlab/json-extension": "^4.0.0-alpha.7",
121122
"@jupyterlab/mainmenu-extension": "^4.0.0-alpha.7",
123+
"@jupyterlab/markedparser-extension": "^4.0.0-alpha.6",
122124
"@jupyterlab/mathjax2-extension": "^4.0.0-alpha.7",
123125
"@jupyterlab/notebook-extension": "^4.0.0-alpha.7",
124126
"@jupyterlab/pdf-extension": "^4.0.0-alpha.7",
@@ -178,6 +180,7 @@
178180
"@jupyterlab/hub-extension",
179181
"@jupyterlab/mainmenu-extension",
180182
"@jupyterlab/mathjax2-extension",
183+
"@jupyterlab/markedparser-extension",
181184
"@jupyterlab/notebook-extension",
182185
"@jupyterlab/rendermime-extension",
183186
"@jupyterlab/running-extension",

binder/example.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@
322322
"name": "python",
323323
"nbconvert_exporter": "python",
324324
"pygments_lexer": "ipython3",
325-
"version": "3.7.12"
325+
"version": "3.10.2"
326326
}
327327
},
328328
"nbformat": 4,

0 commit comments

Comments
 (0)