@@ -251,8 +251,8 @@ describe("Processor", () => {
251
251
it ( "should use a custom layout (local file) and a custom theme and highlight style (URL)" , async ( ) => {
252
252
const proc = new Processor ( {
253
253
layout : buildPath ( "assets/layouts/page.html" ) ,
254
- theme : `${ github } /highlightjs/highlight.js/master /src/styles/monokai.css` ,
255
- highlightStyle : `${ github } /highlightjs/highlight.js/master /src/styles/monokai.css` ,
254
+ theme : `${ github } /highlightjs/highlight.js/main /src/styles/monokai.css` ,
255
+ highlightStyle : `${ github } /highlightjs/highlight.js/main /src/styles/monokai.css` ,
256
256
numberedHeadings : true ,
257
257
codeCopy : true ,
258
258
embedMode : "full" ,
@@ -264,9 +264,9 @@ describe("Processor", () => {
264
264
} ) ;
265
265
it ( "should use a custom layout, theme and highlight style (URL)" , async ( ) => {
266
266
const proc = new Processor ( {
267
- layout : `${ github } /GaelGirodon/markdown-to-document/master /assets/layouts/page.html` ,
268
- theme : `${ github } /highlightjs/highlight.js/master /src/styles/monokai.css` ,
269
- highlightStyle : `${ github } /highlightjs/highlight.js/master /src/styles/monokai.css` ,
267
+ layout : `${ github } /GaelGirodon/markdown-to-document/develop /assets/layouts/page.html` ,
268
+ theme : `${ github } /highlightjs/highlight.js/main /src/styles/monokai.css` ,
269
+ highlightStyle : `${ github } /highlightjs/highlight.js/main /src/styles/monokai.css` ,
270
270
numberedHeadings : true ,
271
271
codeCopy : true ,
272
272
embedMode : "full" ,
@@ -279,8 +279,8 @@ describe("Processor", () => {
279
279
it ( "should fail if the custom layout doesn't exist (local file)" , async ( ) => {
280
280
const proc = new Processor ( {
281
281
layout : buildPath ( "assets/layouts/unknown.html" ) ,
282
- theme : `${ github } /highlightjs/highlight.js/master /src/styles/monokai.css` ,
283
- highlightStyle : `${ github } /highlightjs/highlight.js/master /src/styles/monokai.css` ,
282
+ theme : `${ github } /highlightjs/highlight.js/main /src/styles/monokai.css` ,
283
+ highlightStyle : `${ github } /highlightjs/highlight.js/main /src/styles/monokai.css` ,
284
284
numberedHeadings : true ,
285
285
codeCopy : true ,
286
286
embedMode : "full" ,
@@ -295,9 +295,9 @@ describe("Processor", () => {
295
295
} ) ;
296
296
it ( "should fail if the custom layout doesn't exist (URL)" , async ( ) => {
297
297
const proc = new Processor ( {
298
- layout : `${ github } /GaelGirodon/markdown-to-document/master /assets/layouts/unknown.html` ,
299
- theme : `${ github } /highlightjs/highlight.js/master /src/styles/monokai.css` ,
300
- highlightStyle : `${ github } /highlightjs/highlight.js/master /src/styles/monokai.css` ,
298
+ layout : `${ github } /GaelGirodon/markdown-to-document/develop /assets/layouts/unknown.html` ,
299
+ theme : `${ github } /highlightjs/highlight.js/main /src/styles/monokai.css` ,
300
+ highlightStyle : `${ github } /highlightjs/highlight.js/main /src/styles/monokai.css` ,
301
301
numberedHeadings : true ,
302
302
codeCopy : true ,
303
303
embedMode : "full" ,
0 commit comments