diff --git a/_config.yml b/_config.yml index 4012ed3..27168f2 100644 --- a/_config.yml +++ b/_config.yml @@ -787,6 +787,13 @@ fancybox: true # Tag Plugins settings (標籤外掛) # -------------------------------------- +# abcjs (樂譜渲染) +# See https://github.com/paulrosen/abcjs +# --------------- +abcjs: + enable: false + per_page: true + # mermaid # see https://github.com/mermaid-js/mermaid mermaid: @@ -967,3 +974,4 @@ CDN: # artalk_js: # artalk_css: # busuanzi: + # abcjs_basic_js: diff --git a/layout/includes/additional-js.pug b/layout/includes/additional-js.pug index d5d556d..f37d860 100644 --- a/layout/includes/additional-js.pug +++ b/layout/includes/additional-js.pug @@ -31,6 +31,8 @@ div include ./third-party/math/index.pug + include ./third-party/abcjs/index.pug + if commentsJsLoad include ./third-party/comments/js.pug diff --git a/layout/includes/third-party/abcjs/abcjs.pug b/layout/includes/third-party/abcjs/abcjs.pug new file mode 100644 index 0000000..dc02aea --- /dev/null +++ b/layout/includes/third-party/abcjs/abcjs.pug @@ -0,0 +1,15 @@ +script. + (() => { + function abcjsInit() { + function abcjsFn() { + for (let abcContainer of document.getElementsByClassName("abc-music-sheet")) { + ABCJS.renderAbc(abcContainer, abcContainer.innerHTML, {responsive: 'resize'}) + } + } + + typeof ABCJS === 'object' ? abcjsFn() + : getScript('!{url_for(theme.asset.abcjs_basic_js)}').then(abcjsFn) + } + + window.pjax ? abcjsInit() : document.addEventListener('DOMContentLoaded', abcjsInit) + })() \ No newline at end of file diff --git a/layout/includes/third-party/abcjs/index.pug b/layout/includes/third-party/abcjs/index.pug new file mode 100644 index 0000000..12d1478 --- /dev/null +++ b/layout/includes/third-party/abcjs/index.pug @@ -0,0 +1,6 @@ +if theme.abcjs.enable + if theme.abcjs.per_page + if is_post() || is_page() + include ./abcjs.pug + else if page.abcjs + include ./abcjs.pug diff --git a/plugins.yml b/plugins.yml index 648077e..e6c9e88 100644 --- a/plugins.yml +++ b/plugins.yml @@ -208,3 +208,7 @@ docsearch_css: other_name: docsearch-css file: dist/style.css version: 3.3.3 +abcjs_basic_js: + name: abcjs + file: dist/abcjs-basic-min.js + version: 6.1.9 \ No newline at end of file diff --git a/scripts/tag/score.js b/scripts/tag/score.js new file mode 100644 index 0000000..3157245 --- /dev/null +++ b/scripts/tag/score.js @@ -0,0 +1,22 @@ +/** + * Music Score + * {% score %} + */ + +'use strict'; + +function score(args, content) { + function escapeHtmlTags(s) { + let lookup = { + '&': "&", + '"': """, + '\'': "'", + '<': "<", + '>': ">" + }; + return s.replace(/[&"'<>]/g, c => lookup[c]); + } + return `
${escapeHtmlTags(content)}
`; +} + +hexo.extend.tag.register('score', score, {ends: true}); diff --git a/source/css/_layout/third-party.styl b/source/css/_layout/third-party.styl index a0a5b2d..97eface 100644 --- a/source/css/_layout/third-party.styl +++ b/source/css/_layout/third-party.styl @@ -115,6 +115,14 @@ span.mathjax-overflow .snackbar-css border-radius: 5px !important +.abc-music-sheet + margin: 0 0 20px + opacity: 0 + transition: opacity .3s + + &.abcjs-container + opacity: 1 + +maxWidth768() .fancybox__toolbar__column.is-middle - display: none \ No newline at end of file + display: none diff --git a/source/css/_page/common.styl b/source/css/_page/common.styl index 3356d17..0be8e49 100644 --- a/source/css/_page/common.styl +++ b/source/css/_page/common.styl @@ -18,7 +18,7 @@ padding: 20px 5px +minWidth2000() - max-width: 1500px + max-width: 1700px & > div:first-child:not(.recent-posts) @extend .cardHover