mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
add VERSIONHACK markers for never-released plaintext handling
This commit is contained in:
parent
9927cec392
commit
e7a45e9454
@ -1197,7 +1197,8 @@ var IPython = (function (IPython) {
|
||||
var new_cell = null;
|
||||
for (i=0; i<ncells; i++) {
|
||||
cell_data = new_cells[i];
|
||||
// handle short-lived plaintext name for raw cells
|
||||
// VERSIONHACK: plaintext -> raw
|
||||
// handle never-released plaintext name for raw cells
|
||||
if (cell_data.cell_type === 'plaintext'){
|
||||
cell_data.cell_type = 'raw';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user