diff options
author | Hakim El Hattab | 2019-03-14 13:05:01 +0100 |
---|---|---|
committer | Hakim El Hattab | 2019-03-14 13:05:10 +0100 |
commit | 5301a9ea03a2c5abe857105acbc224c532a8c0e8 (patch) | |
tree | edffb75f71e54b4a9f38ed3b839ff7c7578bd231 /plugin/highlight/highlight.js | |
parent | cfc2f9cf9c09be971a70803db49bf0de704cd877 (diff) |
more forgiving code highlight line number format, add Promise polyfill
Diffstat (limited to 'plugin/highlight/highlight.js')
-rw-r--r-- | plugin/highlight/highlight.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugin/highlight/highlight.js b/plugin/highlight/highlight.js index 446cfe1..6d6910b 100644 --- a/plugin/highlight/highlight.js +++ b/plugin/highlight/highlight.js @@ -97,8 +97,7 @@ c:[{cN:"comment",b:/\(\*/,e:/\*\)/},e.ASM,e.QSM,e.CNM,{b:/\{/,e:/\}/,i:/:/}]}}); } } ); - // lofi xbrowser Promise.resolve() - return { then: function( resolve ) { resolve(); }}; + return Promise.resolve(); }, @@ -139,10 +138,13 @@ c:[{cN:"comment",b:/\(\*/,e:/\*\)/},e.ASM,e.QSM,e.CNM,{b:/\{/,e:/\}/,i:/:/}]}}); linesToHighlight.split( ',' ).forEach( function( lineNumbers ) { + // Avoid failures becase of whitespace + lineNumbers = lineNumbers.replace( /\s/g, '' ); + // Ensure that we looking at a valid slide number (1 or 1-2) if( /^[\d-]+$/.test( lineNumbers ) ) { - lineNumbers = lineNumbers.split( '-' ) + lineNumbers = lineNumbers.split( '-' ); var lineStart = lineNumbers[0]; var lineEnd = lineNumbers[1] || lineStart; |