Updated to support lang attribute and styles in editor
This commit is contained in:
parent
6967dac0ff
commit
880f6bcf02
4 changed files with 20 additions and 4 deletions
|
@ -11,7 +11,7 @@ body {
|
|||
/*overflow: hidden;*/
|
||||
}
|
||||
.CodeMirror {
|
||||
font-family: "Source Code Pro", Consolas, monaco, "Microsoft JhengHei", Meiryo, "MS ゴシック", "MS Gothic", monospace;
|
||||
font-family: "Source Code Pro", Consolas, monaco, monospace;
|
||||
letter-spacing: 0.025em;
|
||||
line-height: 1.25;
|
||||
font-size: 18px;
|
||||
|
@ -19,6 +19,18 @@ body {
|
|||
overflow-y: hidden !important;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
/* support japanese font */
|
||||
.CodeMirror[lang^="ja"] {
|
||||
font-family: "Source Code Pro", Consolas, monaco, Meiryo, "MS ゴシック", "MS Gothic", monospace;
|
||||
}
|
||||
/* support zh-tw font */
|
||||
.CodeMirror[lang="zh-tw"] {
|
||||
font-family: "Source Code Pro", Consolas, monaco, "Microsoft JhengHei", "微軟正黑", monospace;
|
||||
}
|
||||
/* support zh-cn font */
|
||||
.CodeMirror[lang="zh-cn"] {
|
||||
font-family: "Source Code Pro", Consolas, monaco, "Microsoft YaHei", "微软雅黑", monospace;
|
||||
}
|
||||
.CodeMirror-placeholder {
|
||||
color: #777 !important;
|
||||
}
|
||||
|
|
|
@ -66,7 +66,7 @@ function slugifyWithUTF8(text) {
|
|||
}
|
||||
|
||||
//parse meta
|
||||
function parseMeta(md, view, toc, tocAffix) {
|
||||
function parseMeta(md, edit, view, toc, tocAffix) {
|
||||
var robots = null;
|
||||
var lang = null;
|
||||
var dir = null;
|
||||
|
@ -93,10 +93,14 @@ function parseMeta(md, view, toc, tocAffix) {
|
|||
view.attr('lang', lang);
|
||||
toc.attr('lang', lang);
|
||||
tocAffix.attr('lang', lang);
|
||||
if (edit)
|
||||
edit.attr('lang', lang);
|
||||
} else {
|
||||
view.removeAttr('lang');
|
||||
toc.removeAttr('lang');
|
||||
tocAffix.removeAttr('lang');
|
||||
if (edit)
|
||||
edit.removeAttr('lang', lang);
|
||||
}
|
||||
//text direction
|
||||
if (dir) {
|
||||
|
|
|
@ -2137,7 +2137,7 @@ function updateViewInner() {
|
|||
var rendered = md.render(value);
|
||||
// only render again when meta changed
|
||||
if (JSON.stringify(md.meta) != JSON.stringify(lastMeta)) {
|
||||
parseMeta(md, ui.area.markdown, $('#toc'), $('#toc-affix'));
|
||||
parseMeta(md, ui.area.codemirror, ui.area.markdown, $('#toc'), $('#toc-affix'));
|
||||
rendered = md.render(value);
|
||||
}
|
||||
// prevent XSS
|
||||
|
|
|
@ -5,7 +5,7 @@ md.meta = {};
|
|||
var rendered = md.render(text);
|
||||
// only render again when meta changed
|
||||
if (JSON.stringify(md.meta) != JSON.stringify(lastMeta)) {
|
||||
parseMeta(md, markdown, $('#toc'), $('#toc-affix'));
|
||||
parseMeta(md, null, markdown, $('#toc'), $('#toc-affix'));
|
||||
rendered = md.render(text);
|
||||
}
|
||||
// prevent XSS
|
||||
|
|
Loading…
Reference in a new issue