mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Merge branch 'placeholder' of https://github.com/minrk/ipython into minrk-placeholder
This commit is contained in:
commit
c6d030761e
@ -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