mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-24 12:05:22 +08:00
use null char to start text cell placeholders
This commit is contained in:
parent
706819d81c
commit
3aed0a0b94
@ -15,7 +15,7 @@ var IPython = (function (IPython) {
|
||||
|
||||
var TextCell = function (notebook) {
|
||||
this.code_mirror_mode = this.code_mirror_mode || 'htmlmixed';
|
||||
this.placeholder = this.placeholder || '𝄆';
|
||||
this.placeholder = this.placeholder || '\u0000';
|
||||
IPython.Cell.apply(this, arguments);
|
||||
this.rendered = false;
|
||||
this.cell_type = this.cell_type || 'text';
|
||||
@ -159,7 +159,7 @@ var IPython = (function (IPython) {
|
||||
// HTMLCell
|
||||
|
||||
var HTMLCell = function (notebook) {
|
||||
this.placeholder = "𝄆 Type <strong>HTML</strong> and LaTeX: $\\alpha^2$";
|
||||
this.placeholder = "\u0000Type <strong>HTML</strong> and LaTeX: $\\alpha^2$";
|
||||
IPython.TextCell.apply(this, arguments);
|
||||
this.cell_type = 'html';
|
||||
};
|
||||
@ -184,7 +184,7 @@ var IPython = (function (IPython) {
|
||||
// MarkdownCell
|
||||
|
||||
var MarkdownCell = function (notebook) {
|
||||
this.placeholder = "𝄆 Type *Markdown* and LaTeX: $\\alpha^2$";
|
||||
this.placeholder = "\u0000Type *Markdown* and LaTeX: $\\alpha^2$";
|
||||
IPython.TextCell.apply(this, arguments);
|
||||
this.cell_type = 'markdown';
|
||||
};
|
||||
@ -222,7 +222,7 @@ var IPython = (function (IPython) {
|
||||
// RSTCell
|
||||
|
||||
var RSTCell = function (notebook) {
|
||||
this.placeholder = "𝄆 Type *ReStructured Text* and LaTeX: $\\alpha^2$";
|
||||
this.placeholder = "\u0000Type *ReStructured Text* and LaTeX: $\\alpha^2$";
|
||||
IPython.TextCell.apply(this, arguments);
|
||||
this.cell_type = 'rst';
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user