From 558304ff62a648e604b03afe3372ef9566aea850 Mon Sep 17 00:00:00 2001 From: Cheng-Han, Wu Date: Tue, 21 Jun 2016 21:42:03 +0800 Subject: Update to support new metadata: title, description, tags and google-analytics (GA) and refactor render publish slide response function --- public/docs/yaml-metadata.md | 35 ++++++++++++++++++++++++++++++++++- public/js/extra.js | 16 ++++++++++------ public/js/history.js | 32 ++++++++++++++++++++++++-------- public/views/ga.ejs | 18 ++++++++++++++++++ public/views/pretty.ejs | 7 ++++++- public/views/slide.ejs | 8 ++++++++ 6 files changed, 100 insertions(+), 16 deletions(-) create mode 100644 public/views/ga.ejs (limited to 'public') diff --git a/public/docs/yaml-metadata.md b/public/docs/yaml-metadata.md index 5fc6e1b8..539410c8 100644 --- a/public/docs/yaml-metadata.md +++ b/public/docs/yaml-metadata.md @@ -18,6 +18,39 @@ YAML metas Replace the "YAML metas" in this section with any YAML options as below. You can also refer to this note's source code. +title +--- +This option will set the note title which prior than content title. + +> default: not set + +**Example** +```xml +title: meta title +``` + +description +--- +This option will set the note description. + +> default: not set + +**Example** +```xml +description: meta description +``` + +tags +--- +This option will set the tags which prior than content tags. + +> default: not set + +**Example** +```xml +tags: features, cool, updated +``` + robots --- This option will give below meta in the note head meta: @@ -26,7 +59,7 @@ This option will give below meta in the note head meta: ``` So you can prevent any search engine index your note by set `noindex, nofollow`. -> default: not +> default: not set **Example** ```xml diff --git a/public/js/extra.js b/public/js/extra.js index 953770be..e67eee53 100644 --- a/public/js/extra.js +++ b/public/js/extra.js @@ -43,12 +43,16 @@ function updateLastChangeUser() { //get title function getTitle(view) { - var h1s = view.find("h1"); var title = ""; - if (h1s.length > 0) { - title = h1s.first().text(); + if (md && md.meta && md.meta.title && (typeof md.meta.title == "string" || typeof md.meta.title == "number")) { + title = md.meta.title; } else { - title = null; + var h1s = view.find("h1"); + if (h1s.length > 0) { + title = h1s.first().text(); + } else { + title = null; + } } return title; } @@ -93,7 +97,7 @@ function parseMeta(md, edit, view, toc, tocAffix) { spellcheck = meta.spellcheck; } //text language - if (lang) { + if (lang && typeof lang == "string") { view.attr('lang', lang); toc.attr('lang', lang); tocAffix.attr('lang', lang); @@ -107,7 +111,7 @@ function parseMeta(md, edit, view, toc, tocAffix) { edit.removeAttr('lang', lang); } //text direction - if (dir) { + if (dir && typeof dir == "string") { view.attr('dir', dir); toc.attr('dir', dir); tocAffix.attr('dir', dir); diff --git a/public/js/history.js b/public/js/history.js index 9bdca709..0840580d 100644 --- a/public/js/history.js +++ b/public/js/history.js @@ -202,28 +202,44 @@ function writeHistoryToStorage(view) { } } +if (!Array.isArray) { + Array.isArray = function(arg) { + return Object.prototype.toString.call(arg) === '[object Array]'; + }; +} + function renderHistory(view) { var title = renderFilename(view); var tags = []; var rawtags = []; - view.find('h6').each(function (key, value) { - if (/^tags/gmi.test($(value).text())) { - var codes = $(value).find("code"); - for (var i = 0; i < codes.length; i++) - rawtags.push(codes[i]); + if (md && md.meta && md.meta.tags && (typeof md.meta.tags == "string" || typeof md.meta.tags == "number")) { + var metaTags = ('' + md.meta.tags).split(','); + for (var i = 0; i < metaTags.length; i++) { + var text = metaTags[i].trim(); + if (text) rawtags.push(text); } - }); + } else { + view.find('h6').each(function (key, value) { + if (/^tags/gmi.test($(value).text())) { + var codes = $(value).find("code"); + for (var i = 0; i < codes.length; i++) { + var text = codes[i].innerHTML.trim(); + if (text) rawtags.push(text); + } + } + }); + } for (var i = 0; i < rawtags.length; i++) { var found = false; for (var j = 0; j < tags.length; j++) { - if (tags[j] == rawtags[i].innerHTML) { + if (tags[j] == rawtags[i]) { found = true; break; } } if (!found) - tags.push(rawtags[i].innerHTML); + tags.push(rawtags[i]); } //console.debug(tags); var id = urlpath ? location.pathname.slice(urlpath.length + 1, location.pathname.length).split('/')[1] : location.pathname.split('/')[1]; diff --git a/public/views/ga.ejs b/public/views/ga.ejs new file mode 100644 index 00000000..180832d1 --- /dev/null +++ b/public/views/ga.ejs @@ -0,0 +1,18 @@ +<% if(typeof GA !== 'undefined' && GA) { %> + +<% } %> \ No newline at end of file diff --git a/public/views/pretty.ejs b/public/views/pretty.ejs index 0a541107..5ba2e8e1 100644 --- a/public/views/pretty.ejs +++ b/public/views/pretty.ejs @@ -11,6 +11,9 @@ <% if(typeof robots !== 'undefined' && robots) { %> <% } %> + <% if(typeof description !== 'undefined' && description) { %> + + <% } %> <%- title %> @@ -117,4 +120,6 @@ - \ No newline at end of file + + +<%- include ga %> \ No newline at end of file diff --git a/public/views/slide.ejs b/public/views/slide.ejs index 27ccfdf8..3fe30944 100644 --- a/public/views/slide.ejs +++ b/public/views/slide.ejs @@ -5,6 +5,12 @@ + <% if(typeof robots !== 'undefined' && robots) { %> + + <% } %> + <% if(typeof description !== 'undefined' && description) { %> + + <% } %> <%- title %> @@ -83,3 +89,5 @@ + +<%- include ga %> \ No newline at end of file -- cgit v1.2.3