From 006b15b467a5cd835a6eab1b49023100bdc8f2e6 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 13 Oct 2023 19:32:56 +0200 Subject: refactor(components): rewrite Code component and usePrism hook * move Prism styles to Sass placeholders to avoid repeats * let usePrism consumer define its plugins (remove default ones) * remove `plugins` prop from Code component * add new props to Code component to let consumer configure plugins (and handle plugin list from the given options) However there are some problems with Prism plugins: line-highlight and treeview does not seems to be loaded. I don't want to use Babel instead of SWC so I have no solution for now. --- public/prism/prism-handlebars.min.js | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'public/prism/prism-handlebars.min.js') diff --git a/public/prism/prism-handlebars.min.js b/public/prism/prism-handlebars.min.js index 8be0206..796e1a1 100644 --- a/public/prism/prism-handlebars.min.js +++ b/public/prism/prism-handlebars.min.js @@ -1,5 +1,5 @@ -!(function (e) { - (e.languages.handlebars = { +!(function (a) { + (a.languages.handlebars = { comment: /\{\{![\s\S]*?\}\}/, delimiter: { pattern: /^\{\{\{?|\}\}\}?$/, alias: 'punctuation' }, string: /(["'])(?:\\.|(?!\1)[^\\\r\n])*\1/, @@ -17,15 +17,16 @@ punctuation: /[!"#%&':()*+,.\/;<=>@\[\\\]^`{|}~]/, variable: /[^!"#%&'()*+,\/;<=>@\[\\\]^`{|}~\s]+/, }), - e.hooks.add('before-tokenize', function (a) { - e.languages['markup-templating'].buildPlaceholders( - a, + a.hooks.add('before-tokenize', function (e) { + a.languages['markup-templating'].buildPlaceholders( + e, 'handlebars', /\{\{\{[\s\S]+?\}\}\}|\{\{[\s\S]+?\}\}/g ); }), - e.hooks.add('after-tokenize', function (a) { - e.languages['markup-templating'].tokenizePlaceholders(a, 'handlebars'); + a.hooks.add('after-tokenize', function (e) { + a.languages['markup-templating'].tokenizePlaceholders(e, 'handlebars'); }), - (e.languages.hbs = e.languages.handlebars); + (a.languages.hbs = a.languages.handlebars), + (a.languages.mustache = a.languages.handlebars); })(Prism); -- cgit v1.2.3