@@ -224,29 +224,13 @@ var codeInput = {
224224 */
225225 templates : {
226226 // (Source code for class templates after var codeInput = ... so they can extend the codeInput.Template class)
227- // ESM-SUPPORT-START-TEMPLATE-prism Do not (re)move this - it's needed for ESM generation!
228- /**
229- * @deprecated Please use `new codeInput.templates.Prism(...)`
230- */
231- prism ( prism , plugins = [ ] ) { // Dependency: Prism.js (https://prismjs.com/)
232- return new codeInput . templates . Prism ( prism , plugins ) ;
233- } ,
234- // ESM-SUPPORT-END-TEMPLATE-prism Do not (re)move this - it's needed for ESM generation!
235227 /**
236228 * @deprecated Please use `new codeInput.templates.Prism(...)`
237229 */
238230 prism ( prism , plugins = [ ] ) { // Dependency: Prism.js (https://prismjs.com/)
239231 return new codeInput . templates . Prism ( prism , plugins ) ;
240232 } ,
241233
242- // ESM-SUPPORT-START-TEMPLATE-hljs Do not (re)move this - it's needed for ESM generation!
243- /**
244- * @deprecated Please use `new codeInput.templates.Hljs(...)`
245- */
246- hljs ( hljs , plugins = [ ] ) { // Dependency: Highlight.js (https://highlightjs.org/)
247- return new codeInput . templates . Hljs ( hljs , plugins )
248- } ,
249- // ESM-SUPPORT-END-TEMPLATE-hljs Do not (re)move this - it's needed for ESM generation!
250234 /**
251235 * @deprecated Please use `new codeInput.templates.Hljs(...)`
252236 */
@@ -1060,6 +1044,7 @@ var codeInput = {
10601044{
10611045 // Templates are defined here after the codeInput variable is set, because they reference it by extending codeInput.Template.
10621046
1047+ // ESM-SUPPORT-START-TEMPLATE-prism Do not (re)move this - it's needed for ESM generation!
10631048 /**
10641049 * A template that uses Prism.js syntax highlighting (https://prismjs.com/).
10651050 */
@@ -1080,8 +1065,10 @@ var codeInput = {
10801065 ) ;
10811066 }
10821067 } ;
1068+ // ESM-SUPPORT-END-TEMPLATE-prism Do not (re)move this - it's needed for ESM generation!
10831069 codeInput . templates . Prism = Prism ;
10841070
1071+ // ESM-SUPPORT-START-TEMPLATE-hljs Do not (re)move this - it's needed for ESM generation!
10851072 /**
10861073 * A template that uses highlight.js syntax highlighting (https://highlightjs.org/).
10871074 */
@@ -1105,6 +1092,7 @@ var codeInput = {
11051092 ) ;
11061093 }
11071094 } ;
1095+ // ESM-SUPPORT-END-TEMPLATE-hljs Do not (re)move this - it's needed for ESM generation!
11081096 codeInput . templates . Hljs = Hljs ;
11091097}
11101098
0 commit comments