Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
/ * !
2026-06-11 22:16:29 +02:00
Highlight . js v11 . 11.1 ( git : 08 cb242e7d )
( c ) 2006 - 2024 Josh Goebel < hello @ joshgoebel . com > and other contributors
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
License : BSD - 3 - Clause
* /
var hljs = function ( ) { "use strict" ; function e ( n ) {
return n instanceof Map ? n . clear = n . delete = n . set = ( ) => {
throw Error ( "map is read-only" ) } : n instanceof Set && ( n . add = n . clear = n . delete = ( ) => {
throw Error ( "set is read-only" )
} ) , Object . freeze ( n ) , Object . getOwnPropertyNames ( n ) . forEach ( ( t => {
const a = n [ t ] , i = typeof a ; "object" !== i && "function" !== i || Object . isFrozen ( a ) || e ( a )
} ) ) , n } class n { constructor ( e ) {
void 0 === e . data && ( e . data = { } ) , this . data = e . data , this . isMatchIgnored = ! 1 }
ignoreMatch ( ) { this . isMatchIgnored = ! 0 } } function t ( e ) {
return e . replace ( /&/g , "&" ) . replace ( /</g , "<" ) . replace ( />/g , ">" ) . replace ( /"/g , """ ) . replace ( /'/g , "'" )
} function a ( e , ... n ) { const t = Object . create ( null ) ; for ( const n in e ) t [ n ] = e [ n ]
; return n . forEach ( ( e => { for ( const n in e ) t [ n ] = e [ n ] } ) ) , t } const i = e => ! ! e . scope
; class r { constructor ( e , n ) {
this . buffer = "" , this . classPrefix = n . classPrefix , e . walk ( this ) } addText ( e ) {
this . buffer += t ( e ) } openNode ( e ) { if ( ! i ( e ) ) return ; const n = ( ( e , { prefix : n } ) => {
if ( e . startsWith ( "language:" ) ) return e . replace ( "language:" , "language-" )
; if ( e . includes ( "." ) ) { const t = e . split ( "." )
; return [ ` ${ n } ${ t . shift ( ) } ` , ... t . map ( ( ( e , n ) => ` ${ e } ${ "_" . repeat ( n + 1 ) } ` ) ) ] . join ( " " )
} return ` ${ n } ${ e } ` } ) ( e . scope , { prefix : this . classPrefix } ) ; this . span ( n ) }
closeNode ( e ) { i ( e ) && ( this . buffer += "</span>" ) } value ( ) { return this . buffer } span ( e ) {
this . buffer += ` <span class=" ${ e } "> ` } } const s = ( e = { } ) => { const n = { children : [ ] }
; return Object . assign ( n , e ) , n } ; class o { constructor ( ) {
this . rootNode = s ( ) , this . stack = [ this . rootNode ] } get top ( ) {
return this . stack [ this . stack . length - 1 ] } get root ( ) { return this . rootNode } add ( e ) {
this . top . children . push ( e ) } openNode ( e ) { const n = s ( { scope : e } )
; this . add ( n ) , this . stack . push ( n ) } closeNode ( ) {
if ( this . stack . length > 1 ) return this . stack . pop ( ) } closeAllNodes ( ) {
for ( ; this . closeNode ( ) ; ) ; } toJSON ( ) { return JSON . stringify ( this . rootNode , null , 4 ) }
walk ( e ) { return this . constructor . _walk ( e , this . rootNode ) } static _walk ( e , n ) {
return "string" == typeof n ? e . addText ( n ) : n . children && ( e . openNode ( n ) ,
n . children . forEach ( ( n => this . _walk ( e , n ) ) ) , e . closeNode ( n ) ) , e } static _collapse ( e ) {
"string" != typeof e && e . children && ( e . children . every ( ( e => "string" == typeof e ) ) ? e . children = [ e . children . join ( "" ) ] : e . children . forEach ( ( e => {
o . _collapse ( e ) } ) ) ) } } class l extends o { constructor ( e ) { super ( ) , this . options = e }
addText ( e ) { "" !== e && this . add ( e ) } startScope ( e ) { this . openNode ( e ) } endScope ( ) {
this . closeNode ( ) } _ _addSublanguage ( e , n ) { const t = e . root
; n && ( t . scope = "language:" + n ) , this . add ( t ) } toHTML ( ) {
return new r ( this , this . options ) . value ( ) } finalize ( ) {
return this . closeAllNodes ( ) , ! 0 } } function c ( e ) {
return e ? "string" == typeof e ? e : e . source : null } function d ( e ) { return b ( "(?=" , e , ")" ) }
function g ( e ) { return b ( "(?:" , e , ")*" ) } function u ( e ) { return b ( "(?:" , e , ")?" ) }
function b ( ... e ) { return e . map ( ( e => c ( e ) ) ) . join ( "" ) } function m ( ... e ) { const n = ( e => {
const n = e [ e . length - 1 ]
; return "object" == typeof n && n . constructor === Object ? ( e . splice ( e . length - 1 , 1 ) , n ) : { }
} ) ( e ) ; return "(" + ( n . capture ? "" : "?:" ) + e . map ( ( e => c ( e ) ) ) . join ( "|" ) + ")" }
function p ( e ) { return RegExp ( e . toString ( ) + "|" ) . exec ( "" ) . length - 1 }
const _ = /\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./
; function h ( e , { joinWith : n } ) { let t = 0 ; return e . map ( ( e => { t += 1 ; const n = t
; let a = c ( e ) , i = "" ; for ( ; a . length > 0 ; ) { const e = _ . exec ( a ) ; if ( ! e ) { i += a ; break }
i += a . substring ( 0 , e . index ) ,
a = a . substring ( e . index + e [ 0 ] . length ) , "\\" === e [ 0 ] [ 0 ] && e [ 1 ] ? i += "\\" + ( Number ( e [ 1 ] ) + n ) : ( i += e [ 0 ] ,
"(" === e [ 0 ] && t ++ ) } return i } ) ) . map ( ( e => ` ( ${ e } ) ` ) ) . join ( n ) }
2026-06-11 22:16:29 +02:00
const f = "[a-zA-Z]\\w*" , E = "[a-zA-Z_]\\w*" , y = "\\b\\d+(\\.\\d+)?" , w = "(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)" , v = "\\b(0b[01]+)" , N = {
begin : "\\\\[\\s\\S]" , relevance : 0 } , k = { scope : "string" , begin : "'" , end : "'" ,
illegal : "\\n" , contains : [ N ] } , x = { scope : "string" , begin : '"' , end : '"' , illegal : "\\n" ,
contains : [ N ] } , O = ( e , n , t = { } ) => { const i = a ( { scope : "comment" , begin : e , end : n ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
contains : [ ] } , t ) ; i . contains . push ( { scope : "doctag" ,
begin : "[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)" ,
end : /(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/ , excludeBegin : ! 0 , relevance : 0 } )
; const r = m ( "I" , "a" , "is" , "so" , "us" , "to" , "at" , "if" , "in" , "it" , "on" , /[A-Za-z]+['](d|ve|re|ll|t|s|n)/ , /[A-Za-z]+[-][a-z]+/ , /[A-Za-z][a-z]{2,}/ )
; return i . contains . push ( { begin : b ( /[ ]+/ , "(" , r , /[.]?[:]?([.][ ]|[ ])/ , "){3}" ) } ) , i
2026-06-11 22:16:29 +02:00
} , M = O ( "//" , "$" ) , A = O ( "/\\*" , "\\*/" ) , S = O ( "#" , "$" ) ; var C = Object . freeze ( {
_ _proto _ _ : null , APOS _STRING _MODE : k , BACKSLASH _ESCAPE : N , BINARY _NUMBER _MODE : {
scope : "number" , begin : v , relevance : 0 } , BINARY _NUMBER _RE : v , COMMENT : O ,
C _BLOCK _COMMENT _MODE : A , C _LINE _COMMENT _MODE : M , C _NUMBER _MODE : { scope : "number" ,
begin : w , relevance : 0 } , C _NUMBER _RE : w , END _SAME _AS _BEGIN : e => Object . assign ( e , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
"on:begin" : ( e , n ) => { n . data . _beginMatch = e [ 1 ] } , "on:end" : ( e , n ) => {
2026-06-11 22:16:29 +02:00
n . data . _beginMatch !== e [ 1 ] && n . ignoreMatch ( ) } } ) , HASH _COMMENT _MODE : S , IDENT _RE : f ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
MATCH _NOTHING _RE : /\b\B/ , METHOD _GUARD : { begin : "\\.\\s*" + E , relevance : 0 } ,
NUMBER _MODE : { scope : "number" , begin : y , relevance : 0 } , NUMBER _RE : y ,
PHRASAL _WORDS _MODE : {
begin : /\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/
2026-06-11 22:16:29 +02:00
} , QUOTE _STRING _MODE : x , REGEXP _MODE : { scope : "regexp" , begin : /\/(?=[^/\n]*\/)/ ,
end : /\/[gimuy]*/ , contains : [ N , { begin : /\[/ , end : /\]/ , relevance : 0 , contains : [ N ] } ] } ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
RE _STARTERS _RE : "!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~" ,
SHEBANG : ( e = { } ) => { const n = /^#![ ]*\//
; return e . binary && ( e . begin = b ( n , /.*\b/ , e . binary , /\b.*/ ) ) , a ( { scope : "meta" , begin : n ,
end : /$/ , relevance : 0 , "on:begin" : ( e , n ) => { 0 !== e . index && n . ignoreMatch ( ) } } , e ) } ,
TITLE _MODE : { scope : "title" , begin : f , relevance : 0 } , UNDERSCORE _IDENT _RE : E ,
UNDERSCORE _TITLE _MODE : { scope : "title" , begin : E , relevance : 0 } } ) ; function T ( e , n ) {
"." === e . input [ e . index - 1 ] && n . ignoreMatch ( ) } function R ( e , n ) {
void 0 !== e . className && ( e . scope = e . className , delete e . className ) } function D ( e , n ) {
n && e . beginKeywords && ( e . begin = "\\b(" + e . beginKeywords . split ( " " ) . join ( "|" ) + ")(?!\\.)(?=\\b|\\s)" ,
e . _ _beforeBegin = T , e . keywords = e . keywords || e . beginKeywords , delete e . beginKeywords ,
void 0 === e . relevance && ( e . relevance = 0 ) ) } function I ( e , n ) {
Array . isArray ( e . illegal ) && ( e . illegal = m ( ... e . illegal ) ) } function L ( e , n ) {
if ( e . match ) {
if ( e . begin || e . end ) throw Error ( "begin & end are not supported with match" )
; e . begin = e . match , delete e . match } } function B ( e , n ) {
void 0 === e . relevance && ( e . relevance = 1 ) } const $ = ( e , n ) => { if ( ! e . beforeMatch ) return
; if ( e . starts ) throw Error ( "beforeMatch cannot be used with starts" )
; const t = Object . assign ( { } , e ) ; Object . keys ( e ) . forEach ( ( n => { delete e [ n ]
} ) ) , e . keywords = t . keywords , e . begin = b ( t . beforeMatch , d ( t . begin ) ) , e . starts = {
relevance : 0 , contains : [ Object . assign ( t , { endsParent : ! 0 } ) ]
} , e . relevance = 0 , delete t . beforeMatch
2026-06-11 22:16:29 +02:00
} , F = [ "of" , "and" , "for" , "in" , "not" , "or" , "if" , "then" , "parent" , "list" , "value" ]
; function z ( e , n , t = "keyword" ) { const a = Object . create ( null )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; return "string" == typeof e ? i ( t , e . split ( " " ) ) : Array . isArray ( e ) ? i ( t , e ) : Object . keys ( e ) . forEach ( ( t => {
2026-06-11 22:16:29 +02:00
Object . assign ( a , z ( e [ t ] , n , t ) ) } ) ) , a ; function i ( e , t ) {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
n && ( t = t . map ( ( e => e . toLowerCase ( ) ) ) ) , t . forEach ( ( n => { const t = n . split ( "|" )
; a [ t [ 0 ] ] = [ e , j ( t [ 0 ] , t [ 1 ] ) ] } ) ) } } function j ( e , n ) {
2026-06-11 22:16:29 +02:00
return n ? Number ( n ) : ( e => F . includes ( e . toLowerCase ( ) ) ) ( e ) ? 0 : 1 } const U = { } , P = e => {
console . error ( e ) } , K = ( e , ... n ) => { console . log ( "WARN: " + e , ... n ) } , q = ( e , n ) => {
U [ ` ${ e } / ${ n } ` ] || ( console . log ( ` Deprecated as of ${ e } . ${ n } ` ) , U [ ` ${ e } / ${ n } ` ] = ! 0 )
} , H = Error ( ) ; function G ( e , n , { key : t } ) { let a = 0 ; const i = e [ t ] , r = { } , s = { }
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; for ( let e = 1 ; e <= n . length ; e ++ ) s [ e + a ] = i [ e ] , r [ e + a ] = ! 0 , a += p ( n [ e - 1 ] )
2026-06-11 22:16:29 +02:00
; e [ t ] = s , e [ t ] . _emit = r , e [ t ] . _multi = ! 0 } function Z ( e ) { ( e => {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
e . scope && "object" == typeof e . scope && null !== e . scope && ( e . beginScope = e . scope ,
delete e . scope ) } ) ( e ) , "string" == typeof e . beginScope && ( e . beginScope = {
_wrap : e . beginScope } ) , "string" == typeof e . endScope && ( e . endScope = { _wrap : e . endScope
} ) , ( e => { if ( Array . isArray ( e . begin ) ) {
2026-06-11 22:16:29 +02:00
if ( e . skip || e . excludeBegin || e . returnBegin ) throw P ( "skip, excludeBegin, returnBegin not compatible with beginScope: {}" ) ,
H
; if ( "object" != typeof e . beginScope || null === e . beginScope ) throw P ( "beginScope must be object" ) ,
H ; G ( e , e . begin , { key : "beginScope" } ) , e . begin = h ( e . begin , { joinWith : "" } ) } } ) ( e ) , ( e => {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
if ( Array . isArray ( e . end ) ) {
2026-06-11 22:16:29 +02:00
if ( e . skip || e . excludeEnd || e . returnEnd ) throw P ( "skip, excludeEnd, returnEnd not compatible with endScope: {}" ) ,
H
; if ( "object" != typeof e . endScope || null === e . endScope ) throw P ( "endScope must be object" ) ,
H ; G ( e , e . end , { key : "endScope" } ) , e . end = h ( e . end , { joinWith : "" } ) } } ) ( e ) } function W ( e ) {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
function n ( n , t ) {
return RegExp ( c ( n ) , "m" + ( e . case _insensitive ? "i" : "" ) + ( e . unicodeRegex ? "u" : "" ) + ( t ? "g" : "" ) )
} class t { constructor ( ) {
this . matchIndexes = { } , this . regexes = [ ] , this . matchAt = 1 , this . position = 0 }
addRule ( e , n ) {
n . position = this . position ++ , this . matchIndexes [ this . matchAt ] = n , this . regexes . push ( [ n , e ] ) ,
this . matchAt += p ( e ) + 1 } compile ( ) { 0 === this . regexes . length && ( this . exec = ( ) => null )
; const e = this . regexes . map ( ( e => e [ 1 ] ) ) ; this . matcherRe = n ( h ( e , { joinWith : "|"
} ) , ! 0 ) , this . lastIndex = 0 } exec ( e ) { this . matcherRe . lastIndex = this . lastIndex
; const n = this . matcherRe . exec ( e ) ; if ( ! n ) return null
; const t = n . findIndex ( ( ( e , n ) => n > 0 && void 0 !== e ) ) , a = this . matchIndexes [ t ]
; return n . splice ( 0 , t ) , Object . assign ( n , a ) } } class i { constructor ( ) {
this . rules = [ ] , this . multiRegexes = [ ] ,
this . count = 0 , this . lastIndex = 0 , this . regexIndex = 0 } getMatcher ( e ) {
if ( this . multiRegexes [ e ] ) return this . multiRegexes [ e ] ; const n = new t
; return this . rules . slice ( e ) . forEach ( ( ( [ e , t ] ) => n . addRule ( e , t ) ) ) ,
n . compile ( ) , this . multiRegexes [ e ] = n , n } resumingScanAtSamePosition ( ) {
return 0 !== this . regexIndex } considerAll ( ) { this . regexIndex = 0 } addRule ( e , n ) {
this . rules . push ( [ e , n ] ) , "begin" === n . type && this . count ++ } exec ( e ) {
const n = this . getMatcher ( this . regexIndex ) ; n . lastIndex = this . lastIndex
; let t = n . exec ( e )
; if ( this . resumingScanAtSamePosition ( ) ) if ( t && t . index === this . lastIndex ) ; else {
const n = this . getMatcher ( 0 ) ; n . lastIndex = this . lastIndex + 1 , t = n . exec ( e ) }
return t && ( this . regexIndex += t . position + 1 ,
this . regexIndex === this . count && this . considerAll ( ) ) , t } }
if ( e . compilerExtensions || ( e . compilerExtensions = [ ] ) ,
e . contains && e . contains . includes ( "self" ) ) throw Error ( "ERR: contains `self` is not supported at the top-level of a language. See documentation." )
; return e . classNameAliases = a ( e . classNameAliases || { } ) , function t ( r , s ) { const o = r
; if ( r . isCompiled ) return o
2026-06-11 22:16:29 +02:00
; [ R , L , Z , $ ] . forEach ( ( e => e ( r , s ) ) ) , e . compilerExtensions . forEach ( ( e => e ( r , s ) ) ) ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
r . _ _beforeBegin = null , [ D , I , B ] . forEach ( ( e => e ( r , s ) ) ) , r . isCompiled = ! 0 ; let l = null
; return "object" == typeof r . keywords && r . keywords . $pattern && ( r . keywords = Object . assign ( { } , r . keywords ) ,
l = r . keywords . $pattern ,
2026-06-11 22:16:29 +02:00
delete r . keywords . $pattern ) , l = l || /\w+/ , r . keywords && ( r . keywords = z ( r . keywords , e . case _insensitive ) ) ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
o . keywordPatternRe = n ( l , ! 0 ) ,
s && ( r . begin || ( r . begin = /\B|\b/ ) , o . beginRe = n ( o . begin ) , r . end || r . endsWithParent || ( r . end = /\B|\b/ ) ,
r . end && ( o . endRe = n ( o . end ) ) ,
o . terminatorEnd = c ( o . end ) || "" , r . endsWithParent && s . terminatorEnd && ( o . terminatorEnd += ( r . end ? "|" : "" ) + s . terminatorEnd ) ) ,
r . illegal && ( o . illegalRe = n ( r . illegal ) ) ,
r . contains || ( r . contains = [ ] ) , r . contains = [ ] . concat ( ... r . contains . map ( ( e => ( e => ( e . variants && ! e . cachedVariants && ( e . cachedVariants = e . variants . map ( ( n => a ( e , {
2026-06-11 22:16:29 +02:00
variants : null } , n ) ) ) ) , e . cachedVariants ? e . cachedVariants : Q ( e ) ? a ( e , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
starts : e . starts ? a ( e . starts ) : null
} ) : Object . isFrozen ( e ) ? a ( e ) : e ) ) ( "self" === e ? r : e ) ) ) ) , r . contains . forEach ( ( e => { t ( e , o )
} ) ) , r . starts && t ( r . starts , s ) , o . matcher = ( e => { const n = new i
; return e . contains . forEach ( ( e => n . addRule ( e . begin , { rule : e , type : "begin"
} ) ) ) , e . terminatorEnd && n . addRule ( e . terminatorEnd , { type : "end"
2026-06-11 22:16:29 +02:00
} ) , e . illegal && n . addRule ( e . illegal , { type : "illegal" } ) , n } ) ( o ) , o } ( e ) } function Q ( e ) {
return ! ! e && ( e . endsWithParent || Q ( e . starts ) ) } class X extends Error {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
constructor ( e , n ) { super ( e ) , this . name = "HTMLInjectionError" , this . html = n } }
2026-06-11 22:16:29 +02:00
const V = t , J = a , Y = Symbol ( "nomatch" ) , ee = t => {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
const a = Object . create ( null ) , i = Object . create ( null ) , r = [ ] ; let s = ! 0
; const o = "Could not find the language '{}', did you forget to load/include a language module?" , c = {
disableAutodetect : ! 0 , name : "Plain text" , contains : [ ] } ; let p = {
ignoreUnescapedHTML : ! 1 , throwUnescapedHTML : ! 1 , noHighlightRe : /^(no-?highlight)$/i ,
languageDetectRe : /\blang(?:uage)?-([\w-]+)\b/i , classPrefix : "hljs-" ,
cssSelector : "pre code" , languages : null , _ _emitter : l } ; function _ ( e ) {
return p . noHighlightRe . test ( e ) } function h ( e , n , t ) { let a = "" , i = ""
; "object" == typeof n ? ( a = e ,
t = n . ignoreIllegals , i = n . language ) : ( q ( "10.7.0" , "highlight(lang, code, ...args) has been deprecated." ) ,
q ( "10.7.0" , "Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277" ) ,
2026-06-11 22:16:29 +02:00
i = e , a = n ) , void 0 === t && ( t = ! 0 ) ; const r = { code : a , language : i } ; O ( "before:highlight" , r )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; const s = r . result ? r . result : f ( r . language , r . code , t )
2026-06-11 22:16:29 +02:00
; return s . code = r . code , O ( "after:highlight" , s ) , s } function f ( e , t , i , r ) {
const l = Object . create ( null ) ; function c ( ) { if ( ! O . keywords ) return void A . addText ( S )
; let e = 0 ; O . keywordPatternRe . lastIndex = 0 ; let n = O . keywordPatternRe . exec ( S ) , t = ""
; for ( ; n ; ) { t += S . substring ( e , n . index )
; const i = v . case _insensitive ? n [ 0 ] . toLowerCase ( ) : n [ 0 ] , r = ( a = i , O . keywords [ a ] ) ; if ( r ) {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
const [ e , a ] = r
2026-06-11 22:16:29 +02:00
; if ( A . addText ( t ) , t = "" , l [ i ] = ( l [ i ] || 0 ) + 1 , l [ i ] <= 7 && ( C += a ) , e . startsWith ( "_" ) ) t += n [ 0 ] ; else {
const t = v . classNameAliases [ e ] || e ; g ( n [ 0 ] , t ) } } else t += n [ 0 ]
; e = O . keywordPatternRe . lastIndex , n = O . keywordPatternRe . exec ( S ) } var a
; t += S . substring ( e ) , A . addText ( t ) } function d ( ) { null != O . subLanguage ? ( ( ) => {
if ( "" === S ) return ; let e = null ; if ( "string" == typeof O . subLanguage ) {
if ( ! a [ O . subLanguage ] ) return void A . addText ( S )
; e = f ( O . subLanguage , S , ! 0 , M [ O . subLanguage ] ) , M [ O . subLanguage ] = e . _top
} else e = E ( S , O . subLanguage . length ? O . subLanguage : null )
; O . relevance > 0 && ( C += e . relevance ) , A . _ _addSublanguage ( e . _emitter , e . language )
} ) ( ) : c ( ) , S = "" } function g ( e , n ) {
"" !== e && ( A . startScope ( n ) , A . addText ( e ) , A . endScope ( ) ) } function u ( e , n ) { let t = 1
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; const a = n . length - 1 ; for ( ; t <= a ; ) { if ( ! e . _emit [ t ] ) { t ++ ; continue }
2026-06-11 22:16:29 +02:00
const a = v . classNameAliases [ e [ t ] ] || e [ t ] , i = n [ t ] ; a ? g ( i , a ) : ( S = i , c ( ) , S = "" ) , t ++ } }
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
function b ( e , n ) {
2026-06-11 22:16:29 +02:00
return e . scope && "string" == typeof e . scope && A . openNode ( v . classNameAliases [ e . scope ] || e . scope ) ,
e . beginScope && ( e . beginScope . _wrap ? ( g ( S , v . classNameAliases [ e . beginScope . _wrap ] || e . beginScope . _wrap ) ,
S = "" ) : e . beginScope . _multi && ( u ( e . beginScope , n ) , S = "" ) ) , O = Object . create ( e , { parent : {
value : O } } ) , O } function m ( e , t , a ) { let i = ( ( e , n ) => { const t = e && e . exec ( n )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; return t && 0 === t . index } ) ( e . endRe , a ) ; if ( i ) { if ( e [ "on:end" ] ) { const a = new n ( e )
; e [ "on:end" ] ( t , a ) , a . isMatchIgnored && ( i = ! 1 ) } if ( i ) {
for ( ; e . endsParent && e . parent ; ) e = e . parent ; return e } }
if ( e . endsWithParent ) return m ( e . parent , t , a ) } function _ ( e ) {
2026-06-11 22:16:29 +02:00
return 0 === O . matcher . regexIndex ? ( S += e [ 0 ] , 1 ) : ( D = ! 0 , 0 ) } function h ( e ) {
const n = e [ 0 ] , a = t . substring ( e . index ) , i = m ( O , e , a ) ; if ( ! i ) return Y ; const r = O
; O . endScope && O . endScope . _wrap ? ( d ( ) ,
g ( n , O . endScope . _wrap ) ) : O . endScope && O . endScope . _multi ? ( d ( ) ,
u ( O . endScope , e ) ) : r . skip ? S += n : ( r . returnEnd || r . excludeEnd || ( S += n ) ,
d ( ) , r . excludeEnd && ( S = n ) ) ; do {
O . scope && A . closeNode ( ) , O . skip || O . subLanguage || ( C += O . relevance ) , O = O . parent
} while ( O !== i . parent ) ; return i . starts && b ( i . starts , e ) , r . returnEnd ? 0 : n . length }
let y = { } ; function w ( a , r ) { const o = r && r [ 0 ] ; if ( S += a , null == o ) return d ( ) , 0
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; if ( "begin" === y . type && "end" === r . type && y . index === r . index && "" === o ) {
2026-06-11 22:16:29 +02:00
if ( S += t . slice ( r . index , r . index + 1 ) , ! s ) { const n = Error ( ` 0 width match regex ( ${ e } ) ` )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; throw n . languageName = e , n . badRule = y . rule , n } return 1 }
if ( y = r , "begin" === r . type ) return ( e => {
const t = e [ 0 ] , a = e . rule , i = new n ( a ) , r = [ a . _ _beforeBegin , a [ "on:begin" ] ]
; for ( const n of r ) if ( n && ( n ( e , i ) , i . isMatchIgnored ) ) return _ ( t )
2026-06-11 22:16:29 +02:00
; return a . skip ? S += t : ( a . excludeBegin && ( S += t ) ,
d ( ) , a . returnBegin || a . excludeBegin || ( S = t ) ) , b ( a , e ) , a . returnBegin ? 0 : t . length } ) ( r )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; if ( "illegal" === r . type && ! i ) {
2026-06-11 22:16:29 +02:00
const e = Error ( 'Illegal lexeme "' + o + '" for mode "' + ( O . scope || "<unnamed>" ) + '"' )
; throw e . mode = O , e } if ( "end" === r . type ) { const e = h ( r ) ; if ( e !== Y ) return e }
if ( "illegal" === r . type && "" === o ) return S += "\n" , 1
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; if ( R > 1e5 && R > 3 * r . index ) throw Error ( "potential infinite loop, way more iterations than matches" )
2026-06-11 22:16:29 +02:00
; return S += o , o . length } const v = N ( e )
; if ( ! v ) throw P ( o . replace ( "{}" , e ) ) , Error ( 'Unknown language: "' + e + '"' )
; const k = W ( v ) ; let x = "" , O = r || k ; const M = { } , A = new p . _ _emitter ( p ) ; ( ( ) => { const e = [ ]
; for ( let n = O ; n !== v ; n = n . parent ) n . scope && e . unshift ( n . scope )
; e . forEach ( ( e => A . openNode ( e ) ) ) } ) ( ) ; let S = "" , C = 0 , T = 0 , R = 0 , D = ! 1 ; try {
if ( v . _ _emitTokens ) v . _ _emitTokens ( t , A ) ; else { for ( O . matcher . considerAll ( ) ; ; ) {
R ++ , D ? D = ! 1 : O . matcher . considerAll ( ) , O . matcher . lastIndex = T
; const e = O . matcher . exec ( t ) ; if ( ! e ) break ; const n = w ( t . substring ( T , e . index ) , e )
; T = e . index + n } w ( t . substring ( T ) ) } return A . finalize ( ) , x = A . toHTML ( ) , { language : e ,
value : x , relevance : C , illegal : ! 1 , _emitter : A , _top : O } } catch ( n ) {
if ( n . message && n . message . includes ( "Illegal" ) ) return { language : e , value : V ( t ) ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
illegal : ! 0 , relevance : 0 , _illegalBy : { message : n . message , index : T ,
2026-06-11 22:16:29 +02:00
context : t . slice ( T - 100 , T + 100 ) , mode : n . mode , resultSoFar : x } , _emitter : A } ; if ( s ) return {
language : e , value : V ( t ) , illegal : ! 1 , relevance : 0 , errorRaised : n , _emitter : A , _top : O }
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; throw n } } function E ( e , n ) { n = n || p . languages || Object . keys ( a ) ; const t = ( e => {
2026-06-11 22:16:29 +02:00
const n = { value : V ( e ) , illegal : ! 1 , relevance : 0 , _top : c , _emitter : new p . _ _emitter ( p ) }
; return n . _emitter . addText ( e ) , n } ) ( e ) , i = n . filter ( N ) . filter ( x ) . map ( ( n => f ( n , e , ! 1 ) ) )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; i . unshift ( t ) ; const r = i . sort ( ( ( e , n ) => {
if ( e . relevance !== n . relevance ) return n . relevance - e . relevance
2026-06-11 22:16:29 +02:00
; if ( e . language && n . language ) { if ( N ( e . language ) . supersetOf === n . language ) return 1
; if ( N ( n . language ) . supersetOf === e . language ) return - 1 } return 0 } ) ) , [ s , o ] = r , l = s
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; return l . secondBest = o , l } function y ( e ) { let n = null ; const t = ( e => {
let n = e . className + " " ; n += e . parentNode ? e . parentNode . className : ""
2026-06-11 22:16:29 +02:00
; const t = p . languageDetectRe . exec ( n ) ; if ( t ) { const n = N ( t [ 1 ] )
; return n || ( K ( o . replace ( "{}" , t [ 1 ] ) ) ,
K ( "Falling back to no-highlight mode for this block." , e ) ) , n ? t [ 1 ] : "no-highlight" }
return n . split ( /\s+/ ) . find ( ( e => _ ( e ) || N ( e ) ) ) } ) ( e ) ; if ( _ ( t ) ) return
; if ( O ( "before:highlightElement" , { el : e , language : t
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} ) , e . dataset . highlighted ) return void console . log ( "Element previously highlighted. To highlight again, first unset `dataset.highlighted`." , e )
; if ( e . children . length > 0 && ( p . ignoreUnescapedHTML || ( console . warn ( "One of your code blocks includes unescaped HTML. This is a potentially serious security risk." ) ,
console . warn ( "https://github.com/highlightjs/highlight.js/wiki/security" ) ,
console . warn ( "The element with unescaped HTML:" ) ,
2026-06-11 22:16:29 +02:00
console . warn ( e ) ) , p . throwUnescapedHTML ) ) throw new X ( "One of your code blocks includes unescaped HTML." , e . innerHTML )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; n = e ; const a = n . textContent , r = t ? h ( a , { language : t , ignoreIllegals : ! 0 } ) : E ( a )
; e . innerHTML = r . value , e . dataset . highlighted = "yes" , ( ( e , n , t ) => { const a = n && i [ n ] || t
; e . classList . add ( "hljs" ) , e . classList . add ( "language-" + a )
} ) ( e , t , r . language ) , e . result = { language : r . language , re : r . relevance ,
relevance : r . relevance } , r . secondBest && ( e . secondBest = {
language : r . secondBest . language , relevance : r . secondBest . relevance
2026-06-11 22:16:29 +02:00
} ) , O ( "after:highlightElement" , { el : e , result : r , text : a } ) } let w = ! 1 ; function v ( ) {
if ( "loading" === document . readyState ) return w || window . addEventListener ( "DOMContentLoaded" , ( ( ) => {
v ( ) } ) , ! 1 ) , void ( w = ! 0 ) ; document . querySelectorAll ( p . cssSelector ) . forEach ( y ) }
function N ( e ) { return e = ( e || "" ) . toLowerCase ( ) , a [ e ] || a [ i [ e ] ] }
function k ( e , { languageName : n } ) { "string" == typeof e && ( e = [ e ] ) , e . forEach ( ( e => {
i [ e . toLowerCase ( ) ] = n } ) ) } function x ( e ) { const n = N ( e )
; return n && ! n . disableAutodetect } function O ( e , n ) { const t = e ; r . forEach ( ( e => {
e [ t ] && e [ t ] ( n ) } ) ) } Object . assign ( t , { highlight : h , highlightAuto : E , highlightAll : v ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
highlightElement : y ,
highlightBlock : e => ( q ( "10.7.0" , "highlightBlock will be removed entirely in v12.0" ) ,
2026-06-11 22:16:29 +02:00
q ( "10.7.0" , "Please use highlightElement now." ) , y ( e ) ) , configure : e => { p = J ( p , e ) } ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
initHighlighting : ( ) => {
2026-06-11 22:16:29 +02:00
v ( ) , q ( "10.6.0" , "initHighlighting() deprecated. Use highlightAll() now." ) } ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
initHighlightingOnLoad : ( ) => {
2026-06-11 22:16:29 +02:00
v ( ) , q ( "10.6.0" , "initHighlightingOnLoad() deprecated. Use highlightAll() now." )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , registerLanguage : ( e , n ) => { let i = null ; try { i = n ( t ) } catch ( n ) {
2026-06-11 22:16:29 +02:00
if ( P ( "Language definition for '{}' could not be registered." . replace ( "{}" , e ) ) ,
! s ) throw n ; P ( n ) , i = c }
i . name || ( i . name = e ) , a [ e ] = i , i . rawDefinition = n . bind ( null , t ) , i . aliases && k ( i . aliases , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
languageName : e } ) } , unregisterLanguage : e => { delete a [ e ]
; for ( const n of Object . keys ( i ) ) i [ n ] === e && delete i [ n ] } ,
2026-06-11 22:16:29 +02:00
listLanguages : ( ) => Object . keys ( a ) , getLanguage : N , registerAliases : k ,
autoDetection : x , inherit : J , addPlugin : e => { ( e => {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
e [ "before:highlightBlock" ] && ! e [ "before:highlightElement" ] && ( e [ "before:highlightElement" ] = n => {
e [ "before:highlightBlock" ] ( Object . assign ( { block : n . el } , n ) )
} ) , e [ "after:highlightBlock" ] && ! e [ "after:highlightElement" ] && ( e [ "after:highlightElement" ] = n => {
e [ "after:highlightBlock" ] ( Object . assign ( { block : n . el } , n ) ) } ) } ) ( e ) , r . push ( e ) } ,
removePlugin : e => { const n = r . indexOf ( e ) ; - 1 !== n && r . splice ( n , 1 ) } } ) , t . debugMode = ( ) => {
2026-06-11 22:16:29 +02:00
s = ! 1 } , t . safeMode = ( ) => { s = ! 0 } , t . versionString = "11.11.1" , t . regex = { concat : b ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
lookahead : d , either : m , optional : u , anyNumberOfTimes : g }
; for ( const n in C ) "object" == typeof C [ n ] && e ( C [ n ] ) ; return Object . assign ( t , C ) , t
2026-06-11 22:16:29 +02:00
} , ne = ee ( { } ) ; ne . newInstance = ( ) => ee ( { } ) ; const te = e => ( { IMPORTANT : { scope : "meta" ,
begin : "!important" } , BLOCK _COMMENT : e . C _BLOCK _COMMENT _MODE , HEXCOLOR : {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
scope : "number" , begin : /#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/ } ,
FUNCTION _DISPATCH : { className : "built_in" , begin : /[\w-]+(?=\()/ } ,
ATTRIBUTE _SELECTOR _MODE : { scope : "selector-attr" , begin : /\[/ , end : /\]/ , illegal : "$" ,
contains : [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ] } , CSS _NUMBER _MODE : {
scope : "number" ,
begin : e . NUMBER _RE + "(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?" ,
relevance : 0 } , CSS _VARIABLE : { className : "attr" , begin : /--[A-Za-z_][A-Za-z0-9_-]*/ }
2026-06-11 22:16:29 +02:00
} ) , ae = [ "a" , "abbr" , "address" , "article" , "aside" , "audio" , "b" , "blockquote" , "body" , "button" , "canvas" , "caption" , "cite" , "code" , "dd" , "del" , "details" , "dfn" , "div" , "dl" , "dt" , "em" , "fieldset" , "figcaption" , "figure" , "footer" , "form" , "h1" , "h2" , "h3" , "h4" , "h5" , "h6" , "header" , "hgroup" , "html" , "i" , "iframe" , "img" , "input" , "ins" , "kbd" , "label" , "legend" , "li" , "main" , "mark" , "menu" , "nav" , "object" , "ol" , "optgroup" , "option" , "p" , "picture" , "q" , "quote" , "samp" , "section" , "select" , "source" , "span" , "strong" , "summary" , "sup" , "table" , "tbody" , "td" , "textarea" , "tfoot" , "th" , "thead" , "time" , "tr" , "ul" , "var" , "video" , "defs" , "g" , "marker" , "mask" , "pattern" , "svg" , "switch" , "symbol" , "feBlend" , "feColorMatrix" , "feComponentTransfer" , "feComposite" , "feConvolveMatrix" , "feDiffuseLighting" , "feDisplacementMap" , "feFlood" , "feGaussianBlur" , "feImage" , "feMerge" , "feMorphology" , "feOffset" , "feSpecularLighting" , "feTile" , "feTurbulence" , "linearGradient" , "radialGradient" , "stop" , "circle" , "ellipse" , "image" , "line" , "path" , "polygon" , "polyline" , "rect" , "text" , "use" , "textPath" , "tspan" , "foreignObject" , "clipPath" ] , ie = [ "any-hover" , "any-pointer" , "aspect-ratio" , "color" , "color-gamut" , "color-index" , "device-aspect-ratio" , "device-height" , "device-width" , "display-mode" , "forced-colors" , "grid" , "height" , "hover" , "inverted-colors" , "monochrome" , "orientation" , "overflow-block" , "overflow-inline" , "pointer" , "prefers-color-scheme" , "prefers-contrast" , "prefers-reduced-motion" , "prefers-reduced-transparency" , "resolution" , "scan" , "scripting" , "update" , "width" , "min-width" , "max-width" , "min-height" , "max-height" ] . sort ( ) . reverse ( ) , re = [ "active" , "any-link" , "blank" , "checked" , "current" , "default" , "defined" , "dir" , "disabled" , "drop" , "empty" , "enabled" , "first" , "first-child" , "first-of-type" , "fullscreen" , "future" , "focus" , "focus-visible" , "focus-within" , "has" , "host" , "host-context" , "hover" , "indeterminate" , "in-range" , "invalid" , "is" , "lang" , "last-child" , "last-of-type" , "left" , "link" , "local-link" , "not" , "nth-child" , "nth-col" , "nth-last-child" , "nth-last-col" , "nth-last-of-type" , "nth-of-type" , "only-child" , "only-of-type" , "optional" , "out-of-range" , "past" , "placeholder-shown" , "read-only" , "read-write" , "required" , "right" , "root" , "scope" , "target" , "target-within" , "user-invalid" , "valid" , "visited" , "where" ] . sort ( ) . reverse ( ) , se = [ "after" , "backdrop" , "before" , "cue" , "cue-region" , "first-letter" , "first-line" , "grammar-error" , "marker" , "part" , "placeholder" , "selection" , "slotted" , "spelling-error" ] . sort ( ) . reverse ( ) , oe = [ "accent-color" , "align-content" , "align-items" , "align-self" , "alignment-baseline" , "all" , "anchor-name" , "animation" , "animation-composition" , "animation-delay" , "animation-direction" , "animation-duration" , "animation-fill-mode" , "animation-iteration-count" , "animation-name" , "animation-play-state" , "animation-range" , "animation-range-end" , "animation-range-start" , "animation-timeline" , "animation-timing-function" , "appearance" , "aspect-ratio" , "backdrop-filter" , "backface-visibility" , "background" , "background-attachment" , "background-blend-mode" , "background-clip" , "background-color" , "background-image" , "background-origin" , "background-position" , "background-position-x" , "background-position-y" , "background-repeat" , "background-size" , "baseline-shift" , "block-size" , "border" , "border-block" , "border-block-color" , "border-block-end" , "border-block-end-color" , "border-block-end-style" , "border-block-end-width" , "border-block-start" , "border-block-start-color" , "border-block-start-style" , "border-block-start-width" , "border-block-style" , "border-block-width" , "border-bottom" , "border-bottom-color" , "border-bottom-left-radius" , "border-bottom-right-radius" , "border-bottom-style" , "border-bottom-width" , "border-collapse" , "border-color" , "border-end-end-radius" , "border-end-start-radius" , "border-image" , "border-image-outset" , "border-image-repeat" , "border-image-slice" , "border-image-source" , "border-image-width" , "border-inline" , "border-inline-color" , "border-inline-end" , "border-inline-end-color" , "border-inline-end-style" , "border-inline-end-width" , "border-inline-start" , "border-inline-start-color" , "border-inline-start-style" , "border-inline-start-width" , "border-inline-style" , "border-inline-width" , "border-left" , "border-left-color" , " border - left - s
; var ce = "[0-9](_*[0-9])*" , de = ` \\ .( ${ ce } ) ` , ge = "[0-9a-fA-F](_*[0-9a-fA-F])*" , ue = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
className : "number" , variants : [ {
2026-06-11 22:16:29 +02:00
begin : ` ( \\ b( ${ ce } )(( ${ de } )| \\ .)?|( ${ de } ))[eE][+-]?( ${ ce } )[fFdD]? \\ b ` } , {
begin : ` \\ b( ${ ce } )(( ${ de } )[fFdD]? \\ b| \\ .([fFdD] \\ b)?) ` } , {
begin : ` ( ${ de } )[fFdD]? \\ b ` } , { begin : ` \\ b( ${ ce } )[fFdD] \\ b ` } , {
begin : ` \\ b0[xX](( ${ ge } ) \\ .?|( ${ ge } )? \\ .( ${ ge } ))[pP][+-]?( ${ ce } )[fFdD]? \\ b ` } , {
begin : "\\b(0|[1-9](_*[0-9])*)[lL]?\\b" } , { begin : ` \\ b0[xX]( ${ ge } )[lL]? \\ b ` } , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : "\\b0(_*[0-7])*[lL]?\\b" } , { begin : "\\b0[bB][01](_*[01])*[lL]?\\b" } ] ,
2026-06-11 22:16:29 +02:00
relevance : 0 } ; function be ( e , n , t ) { return - 1 === t ? "" : e . replace ( n , ( a => be ( e , n , t - 1 ) ) ) }
const me = "[A-Za-z$_][0-9A-Za-z$_]*" , pe = [ "as" , "in" , "of" , "if" , "for" , "while" , "finally" , "var" , "new" , "function" , "do" , "return" , "void" , "else" , "break" , "catch" , "instanceof" , "with" , "throw" , "case" , "default" , "try" , "switch" , "continue" , "typeof" , "delete" , "let" , "yield" , "const" , "class" , "debugger" , "async" , "await" , "static" , "import" , "from" , "export" , "extends" , "using" ] , _e = [ "true" , "false" , "null" , "undefined" , "NaN" , "Infinity" ] , he = [ "Object" , "Function" , "Boolean" , "Symbol" , "Math" , "Date" , "Number" , "BigInt" , "String" , "RegExp" , "Array" , "Float32Array" , "Float64Array" , "Int8Array" , "Uint8Array" , "Uint8ClampedArray" , "Int16Array" , "Int32Array" , "Uint16Array" , "Uint32Array" , "BigInt64Array" , "BigUint64Array" , "Set" , "Map" , "WeakSet" , "WeakMap" , "ArrayBuffer" , "SharedArrayBuffer" , "Atomics" , "DataView" , "JSON" , "Promise" , "Generator" , "GeneratorFunction" , "AsyncFunction" , "Reflect" , "Proxy" , "Intl" , "WebAssembly" ] , fe = [ "Error" , "EvalError" , "InternalError" , "RangeError" , "ReferenceError" , "SyntaxError" , "TypeError" , "URIError" ] , Ee = [ "setInterval" , "setTimeout" , "clearInterval" , "clearTimeout" , "require" , "exports" , "eval" , "isFinite" , "isNaN" , "parseFloat" , "parseInt" , "decodeURI" , "decodeURIComponent" , "encodeURI" , "encodeURIComponent" , "escape" , "unescape" ] , ye = [ "arguments" , "this" , "super" , "console" , "window" , "document" , "localStorage" , "sessionStorage" , "module" , "global" ] , we = [ ] . concat ( Ee , he , fe )
; function ve ( e ) { const n = e . regex , t = me , a = { begin : /<[A-Za-z0-9\\._:-]+/ ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
end : /\/[A-Za-z0-9\\._:-]+>|\/>/ , isTrulyOpeningTag : ( e , n ) => {
const t = e [ 0 ] . length + e . index , a = e . input [ t ]
; if ( "<" === a || "," === a ) return void n . ignoreMatch ( ) ; let i
; ">" === a && ( ( ( e , { after : n } ) => { const t = "</" + e [ 0 ] . slice ( 1 )
; return - 1 !== e . input . indexOf ( t , n ) } ) ( e , { after : t } ) || n . ignoreMatch ( ) )
; const r = e . input . substring ( t )
; ( ( i = r . match ( /^\s*=/ ) ) || ( i = r . match ( /^\s+extends\s+/ ) ) && 0 === i . index ) && n . ignoreMatch ( )
2026-06-11 22:16:29 +02:00
} } , i = { $pattern : me , keyword : pe , literal : _e , built _in : we , "variable.language" : ye
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , r = "[0-9](_?[0-9])*" , s = ` \\ .( ${ r } ) ` , o = "0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*" , l = {
className : "number" , variants : [ {
begin : ` ( \\ b( ${ o } )(( ${ s } )| \\ .)?|( ${ s } ))[eE][+-]?( ${ r } ) \\ b ` } , {
begin : ` \\ b( ${ o } ) \\ b(( ${ s } ) \\ b| \\ .)?|( ${ s } ) \\ b ` } , {
begin : "\\b(0|[1-9](_?[0-9])*)n\\b" } , {
begin : "\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b" } , {
begin : "\\b0[bB][0-1](_?[0-1])*n?\\b" } , { begin : "\\b0[oO][0-7](_?[0-7])*n?\\b" } , {
begin : "\\b0[0-7]+n?\\b" } ] , relevance : 0 } , c = { className : "subst" , begin : "\\$\\{" ,
2026-06-11 22:16:29 +02:00
end : "\\}" , keywords : i , contains : [ ] } , d = { begin : ".?html`" , end : "" , starts : { end : "`" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
returnEnd : ! 1 , contains : [ e . BACKSLASH _ESCAPE , c ] , subLanguage : "xml" } } , g = {
2026-06-11 22:16:29 +02:00
begin : ".?css`" , end : "" , starts : { end : "`" , returnEnd : ! 1 ,
contains : [ e . BACKSLASH _ESCAPE , c ] , subLanguage : "css" } } , u = { begin : ".?gql`" , end : "" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
starts : { end : "`" , returnEnd : ! 1 , contains : [ e . BACKSLASH _ESCAPE , c ] ,
subLanguage : "graphql" } } , b = { className : "string" , begin : "`" , end : "`" ,
contains : [ e . BACKSLASH _ESCAPE , c ] } , m = { className : "comment" ,
variants : [ e . COMMENT ( /\/\*\*(?!\/)/ , "\\*/" , { relevance : 0 , contains : [ {
begin : "(?=@[A-Za-z]+)" , relevance : 0 , contains : [ { className : "doctag" ,
begin : "@[A-Za-z]+" } , { className : "type" , begin : "\\{" , end : "\\}" , excludeEnd : ! 0 ,
excludeBegin : ! 0 , relevance : 0 } , { className : "variable" , begin : t + "(?=\\s*(-)|$)" ,
endsParent : ! 0 , relevance : 0 } , { begin : /(?=[^\n])\s/ , relevance : 0 } ] } ]
} ) , e . C _BLOCK _COMMENT _MODE , e . C _LINE _COMMENT _MODE ]
} , p = [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , d , g , u , b , { match : /\$\d+/ } , l ]
; c . contains = p . concat ( { begin : /\{/ , end : /\}/ , keywords : i , contains : [ "self" ] . concat ( p )
2026-06-11 22:16:29 +02:00
} ) ; const _ = [ ] . concat ( m , c . contains ) , h = _ . concat ( [ { begin : /(\s*)\(/ , end : /\)/ ,
keywords : i , contains : [ "self" ] . concat ( _ ) } ] ) , f = { className : "params" , begin : /(\s*)\(/ ,
end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , keywords : i , contains : h } , E = { variants : [ {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
match : [ /class/ , /\s+/ , t , /\s+/ , /extends/ , /\s+/ , n . concat ( t , "(" , n . concat ( /\./ , t ) , ")*" ) ] ,
scope : { 1 : "keyword" , 3 : "title.class" , 5 : "keyword" , 7 : "title.class.inherited" } } , {
match : [ /class/ , /\s+/ , t ] , scope : { 1 : "keyword" , 3 : "title.class" } } ] } , y = { relevance : 0 ,
match : n . either ( /\bJSON/ , /\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/ , /\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/ , /\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/ ) ,
2026-06-11 22:16:29 +02:00
className : "title.class" , keywords : { _ : [ ... he , ... fe ] } } , w = { variants : [ {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
match : [ /function/ , /\s+/ , t , /(?=\s*\()/ ] } , { match : [ /function/ , /\s*(?=\()/ ] } ] ,
className : { 1 : "keyword" , 3 : "title.function" } , label : "func.def" , contains : [ f ] ,
2026-06-11 22:16:29 +02:00
illegal : /%/ } , v = {
match : n . concat ( /\b/ , ( N = [ ... Ee , "super" , "import" ] . map ( ( e => e + "\\s*\\(" ) ) ,
n . concat ( "(?!" , N . join ( "|" ) , ")" ) ) , t , n . lookahead ( /\s*\(/ ) ) ,
className : "title.function" , relevance : 0 } ; var N ; const k = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : n . concat ( /\./ , n . lookahead ( n . concat ( t , /(?![0-9A-Za-z$_(])/ ) ) ) , end : t ,
2026-06-11 22:16:29 +02:00
excludeBegin : ! 0 , keywords : "prototype" , className : "property" , relevance : 0 } , x = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
match : [ /get|set/ , /\s+/ , t , /(?=\()/ ] , className : { 1 : "keyword" , 3 : "title.function" } ,
contains : [ { begin : /\(\)/ } , f ]
2026-06-11 22:16:29 +02:00
} , O = "(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|" + e . UNDERSCORE _IDENT _RE + ")\\s*=>" , M = {
match : [ /const|var|let/ , /\s+/ , t , /\s*/ , /=\s*/ , /(async\s*)?/ , n . lookahead ( O ) ] ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
keywords : "async" , className : { 1 : "keyword" , 3 : "title.function" } , contains : [ f ] }
; return { name : "JavaScript" , aliases : [ "js" , "jsx" , "mjs" , "cjs" ] , keywords : i , exports : {
PARAMS _CONTAINS : h , CLASS _REFERENCE : y } , illegal : /#(?![$_A-z])/ ,
contains : [ e . SHEBANG ( { label : "shebang" , binary : "node" , relevance : 5 } ) , {
label : "use_strict" , className : "meta" , relevance : 10 ,
begin : /^\s*['"]use (strict|asm)['"]/
} , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , d , g , u , b , m , { match : /\$\d+/ } , l , y , {
2026-06-11 22:16:29 +02:00
scope : "attr" , match : t + n . lookahead ( ":" ) , relevance : 0 } , M , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : "(" + e . RE _STARTERS _RE + "|\\b(case|return|throw)\\b)\\s*" ,
keywords : "return throw case" , relevance : 0 , contains : [ m , e . REGEXP _MODE , {
2026-06-11 22:16:29 +02:00
className : "function" , begin : O , returnBegin : ! 0 , end : "\\s*=>" , contains : [ {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
className : "params" , variants : [ { begin : e . UNDERSCORE _IDENT _RE , relevance : 0 } , {
2026-06-11 22:16:29 +02:00
className : null , begin : /\(\s*\)/ , skip : ! 0 } , { begin : /(\s*)\(/ , end : /\)/ ,
excludeBegin : ! 0 , excludeEnd : ! 0 , keywords : i , contains : h } ] } ] } , { begin : /,/ , relevance : 0
} , { match : /\s+/ , relevance : 0 } , { variants : [ { begin : "<>" , end : "</>" } , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
match : /<[A-Za-z0-9\\._:-]+\s*\/>/ } , { begin : a . begin ,
"on:begin" : a . isTrulyOpeningTag , end : a . end } ] , subLanguage : "xml" , contains : [ {
2026-06-11 22:16:29 +02:00
begin : a . begin , end : a . end , skip : ! 0 , contains : [ "self" ] } ] } ] } , w , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
beginKeywords : "while if switch catch for" } , {
begin : "\\b(?!function)" + e . UNDERSCORE _IDENT _RE + "\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{" ,
returnBegin : ! 0 , label : "func.def" , contains : [ f , e . inherit ( e . TITLE _MODE , { begin : t ,
2026-06-11 22:16:29 +02:00
className : "title.function" } ) ] } , { match : /\.\.\./ , relevance : 0 } , k , { match : "\\$" + t ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
relevance : 0 } , { match : [ /\bconstructor(?=\s*\()/ ] , className : { 1 : "title.function" } ,
2026-06-11 22:16:29 +02:00
contains : [ f ] } , v , { relevance : 0 , match : /\b[A-Z][A-Z_0-9]+\b/ ,
className : "variable.constant" } , E , x , { match : /\$[(.]/ } ] } }
const Ne = e => b ( /\b/ , e , /\w$/ . test ( e ) ? /\b/ : /\B/ ) , ke = [ "Protocol" , "Type" ] . map ( Ne ) , xe = [ "init" , "self" ] . map ( Ne ) , Oe = [ "Any" , "Self" ] , Me = [ "actor" , "any" , "associatedtype" , "async" , "await" , /as\?/ , /as!/ , "as" , "borrowing" , "break" , "case" , "catch" , "class" , "consume" , "consuming" , "continue" , "convenience" , "copy" , "default" , "defer" , "deinit" , "didSet" , "distributed" , "do" , "dynamic" , "each" , "else" , "enum" , "extension" , "fallthrough" , /fileprivate\(set\)/ , "fileprivate" , "final" , "for" , "func" , "get" , "guard" , "if" , "import" , "indirect" , "infix" , /init\?/ , /init!/ , "inout" , /internal\(set\)/ , "internal" , "in" , "is" , "isolated" , "nonisolated" , "lazy" , "let" , "macro" , "mutating" , "nonmutating" , /open\(set\)/ , "open" , "operator" , "optional" , "override" , "package" , "postfix" , "precedencegroup" , "prefix" , /private\(set\)/ , "private" , "protocol" , /public\(set\)/ , "public" , "repeat" , "required" , "rethrows" , "return" , "set" , "some" , "static" , "struct" , "subscript" , "super" , "switch" , "throws" , "throw" , /try\?/ , /try!/ , "try" , "typealias" , /unowned\(safe\)/ , /unowned\(unsafe\)/ , "unowned" , "var" , "weak" , "where" , "while" , "willSet" ] , Ae = [ "false" , "nil" , "true" ] , Se = [ "assignment" , "associativity" , "higherThan" , "left" , "lowerThan" , "none" , "right" ] , Ce = [ "#colorLiteral" , "#column" , "#dsohandle" , "#else" , "#elseif" , "#endif" , "#error" , "#file" , "#fileID" , "#fileLiteral" , "#filePath" , "#function" , "#if" , "#imageLiteral" , "#keyPath" , "#line" , "#selector" , "#sourceLocation" , "#warning" ] , Te = [ "abs" , "all" , "any" , "assert" , "assertionFailure" , "debugPrint" , "dump" , "fatalError" , "getVaList" , "isKnownUniquelyReferenced" , "max" , "min" , "numericCast" , "pointwiseMax" , "pointwiseMin" , "precondition" , "preconditionFailure" , "print" , "readLine" , "repeatElement" , "sequence" , "stride" , "swap" , "swift_unboxFromSwiftValueWithType" , "transcode" , "type" , "unsafeBitCast" , "unsafeDowncast" , "withExtendedLifetime" , "withUnsafeMutablePointer" , "withUnsafePointer" , "withVaList" , "withoutActuallyEscaping" , "zip" ] , Re = m ( /[/=\-+!*%<>&|^~?]/ , /[\u00A1-\u00A7]/ , /[\u00A9\u00AB]/ , /[\u00AC\u00AE]/ , /[\u00B0\u00B1]/ , /[\u00B6\u00BB\u00BF\u00D7\u00F7]/ , /[\u2016-\u2017]/ , /[\u2020-\u2027]/ , /[\u2030-\u203E]/ , /[\u2041-\u2053]/ , /[\u2055-\u205E]/ , /[\u2190-\u23FF]/ , /[\u2500-\u2775]/ , /[\u2794-\u2BFF]/ , /[\u2E00-\u2E7F]/ , /[\u3001-\u3003]/ , /[\u3008-\u3020]/ , /[\u3030]/ ) , De = m ( Re , /[\u0300-\u036F]/ , /[\u1DC0-\u1DFF]/ , /[\u20D0-\u20FF]/ , /[\uFE00-\uFE0F]/ , /[\uFE20-\uFE2F]/ ) , Ie = b ( Re , De , "*" ) , Le = m ( /[a-zA-Z_]/ , /[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/ , /[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/ , /[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/ , /[\u1E00-\u1FFF]/ , /[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/ , /[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/ , /[\u2C00-\u2DFF\u2E80-\u2FFF]/ , /[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/ , /[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/ , /[\uFE47-\uFEFE\uFF00-\uFFFD]/ ) , Be = m ( Le , /\d/ , /[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/ ) , $e = b ( Le , Be , "*" ) , Fe = b ( /[A-Z]/ , Be , "*" ) , ze = [ "attached" , "autoclosure" , b ( /convention\(/ , m ( "swift" , "block" , "c" ) , /\)/ ) , "discardableResult" , "dynamicCallable" , "dynamicMemberLookup" , "escaping" , "freestanding" , "frozen" , "GKInspectable" , "IBAction" , "IBDesignable" , "IBInspectable" , "IBOutlet" , "IBSegueAction" , "inlinable" , "main" , "nonobjc" , "NSApplicationMain" , "NSCopying" , "NSManaged" , b ( /objc\(/ , $e , /\)/ ) , "objc" , "objcMembers" , "propertyWrapper" , "requires_stored_property_inits" , "resultBuilder" , "Sendable" , "testable" , "UIApplicationMain" , "unchecked" , "unknown" , "usableFromInline" , "warn_unqualified_access" ] , je = [ "iOS" , "iOSApplicationExtension" , "macOS" , "macOSApplicationExtension" , "macCatalyst" , "macCatalystApplicationExtension" , "watchOS" , "watchOSApplicationExtension" , "tvOS" , "tvOSApplicationExtension" , "swift" ]
; var Ue = Object . freeze ( { _ _proto _ _ : null , grmr _bash : e => { const n = e . regex , t = { } , a = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : /\$\{/ , end : /\}/ , contains : [ "self" , { begin : /:-/ , contains : [ t ] } ] }
; Object . assign ( t , { className : "variable" , variants : [ {
begin : n . concat ( /\$[\w\d#@][\w\d_]*/ , "(?![\\w\\d])(?![$])" ) } , a ] } ) ; const i = {
2026-06-11 22:16:29 +02:00
className : "subst" , begin : /\$\(/ , end : /\)/ , contains : [ e . BACKSLASH _ESCAPE ]
} , r = e . inherit ( e . COMMENT ( ) , { match : [ /(^|\s)/ , /#.*$/ ] , scope : { 2 : "comment" } } ) , s = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : /<<-?\s*(?=\w+)/ , starts : { contains : [ e . END _SAME _AS _BEGIN ( { begin : /(\w+)/ ,
2026-06-11 22:16:29 +02:00
end : /(\w+)/ , className : "string" } ) ] } } , o = { className : "string" , begin : /"/ , end : /"/ ,
contains : [ e . BACKSLASH _ESCAPE , t , i ] } ; i . contains . push ( o ) ; const l = { begin : /\$?\(\(/ ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
end : /\)\)/ , contains : [ { begin : /\d+#[0-9a-f]+/ , className : "number" } , e . NUMBER _MODE , t ]
2026-06-11 22:16:29 +02:00
} , c = e . SHEBANG ( { binary : "(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)" , relevance : 10
} ) , d = { className : "function" , begin : /\w[\w\d_]*\s*\(\s*\)\s*\{/ , returnBegin : ! 0 ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
contains : [ e . inherit ( e . TITLE _MODE , { begin : /\w[\w\d_]*/ } ) ] , relevance : 0 } ; return {
2026-06-11 22:16:29 +02:00
name : "Bash" , aliases : [ "sh" , "zsh" ] , keywords : { $pattern : /\b[a-z][a-z0-9._-]+\b/ ,
keyword : [ "if" , "then" , "else" , "elif" , "fi" , "time" , "for" , "while" , "until" , "in" , "do" , "done" , "case" , "esac" , "coproc" , "function" , "select" ] ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
literal : [ "true" , "false" ] ,
2026-06-11 22:16:29 +02:00
built _in : [ "break" , "cd" , "continue" , "eval" , "exec" , "exit" , "export" , "getopts" , "hash" , "pwd" , "readonly" , "return" , "shift" , "test" , "times" , "trap" , "umask" , "unset" , "alias" , "bind" , "builtin" , "caller" , "command" , "declare" , "echo" , "enable" , "help" , "let" , "local" , "logout" , "mapfile" , "printf" , "read" , "readarray" , "source" , "sudo" , "type" , "typeset" , "ulimit" , "unalias" , "set" , "shopt" , "autoload" , "bg" , "bindkey" , "bye" , "cap" , "chdir" , "clone" , "comparguments" , "compcall" , "compctl" , "compdescribe" , "compfiles" , "compgroups" , "compquote" , "comptags" , "comptry" , "compvalues" , "dirs" , "disable" , "disown" , "echotc" , "echoti" , "emulate" , "fc" , "fg" , "float" , "functions" , "getcap" , "getln" , "history" , "integer" , "jobs" , "kill" , "limit" , "log" , "noglob" , "popd" , "print" , "pushd" , "pushln" , "rehash" , "sched" , "setcap" , "setopt" , "stat" , "suspend" , "ttyctl" , "unfunction" , "unhash" , "unlimit" , "unsetopt" , "vared" , "wait" , "whence" , "where" , "which" , "zcompile" , "zformat" , "zftp" , "zle" , "zmodload" , "zparseopts" , "zprof" , "zpty" , "zregexparse" , "zsocket" , "zstyle" , "ztcp" , "chcon" , "chgrp" , "chown" , "chmod" , "cp" , "dd" , "df" , "dir" , "dircolors" , "ln" , "ls" , "mkdir" , "mkfifo" , "mknod" , "mktemp" , "mv" , "realpath" , "rm" , "rmdir" , "shred" , "sync" , "touch" , "truncate" , "vdir" , "b2sum" , "base32" , "base64" , "cat" , "cksum" , "comm" , "csplit" , "cut" , "expand" , "fmt" , "fold" , "head" , "join" , "md5sum" , "nl" , "numfmt" , "od" , "paste" , "ptx" , "pr" , "sha1sum" , "sha224sum" , "sha256sum" , "sha384sum" , "sha512sum" , "shuf" , "sort" , "split" , "sum" , "tac" , "tail" , "tr" , "tsort" , "unexpand" , "uniq" , "wc" , "arch" , "basename" , "chroot" , "date" , "dirname" , "du" , "echo" , "env" , "expr" , "factor" , "groups" , "hostid" , "id" , "link" , "logname" , "nice" , "nohup" , "nproc" , "pathchk" , "pinky" , "printenv" , "printf" , "pwd" , "readlink" , "runcon" , "seq" , "sleep" , "stat" , "stdbuf" , "stty" , "tee" , "test" , "timeout" , "tty" , "uname" , "unlink" , "uptime" , "users" , "who" , "whoami" , "yes" ]
} , contains : [ c , e . SHEBANG ( ) , d , l , r , s , { match : /(\/[a-z._-]+)+/ } , o , { match : /\\"/ } , {
className : "string" , begin : /'/ , end : /'/ } , { match : /\\'/ } , t ] } } , grmr _c : e => {
const n = e . regex , t = e . COMMENT ( "//" , "$" , { contains : [ { begin : /\\\n/ } ]
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} ) , a = "decltype\\(auto\\)" , i = "[a-zA-Z_]\\w*::" , r = "(" + a + "|" + n . optional ( i ) + "[a-zA-Z_]\\w*" + n . optional ( "<[^<>]+>" ) + ")" , s = {
className : "type" , variants : [ { begin : "\\b[a-z\\d_]*_t\\b" } , {
match : /\batomic_[a-z]{3,6}\b/ } ] } , o = { className : "string" , variants : [ {
begin : '(u8?|U|L)?"' , end : '"' , illegal : "\\n" , contains : [ e . BACKSLASH _ESCAPE ] } , {
begin : "(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)" ,
end : "'" , illegal : "." } , e . END _SAME _AS _BEGIN ( {
begin : /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/ , end : /\)([^()\\ ]{0,16})"/ } ) ] } , l = {
2026-06-11 22:16:29 +02:00
className : "number" , variants : [ { match : /\b(0b[01']+)/ } , {
match : /(-?)\b([\d']+(\.[\d']*)?|\.[\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)/
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , {
2026-06-11 22:16:29 +02:00
match : /(-?)\b(0[xX][a-fA-F0-9]+(?:'[a-fA-F0-9]+)*(?:\.[a-fA-F0-9]*(?:'[a-fA-F0-9]*)*)?(?:[pP][-+]?[0-9]+)?(l|L)?(u|U)?)/
} , { match : /(-?)\b\d+(?:'\d+)*(?:\.\d*(?:'\d*)*)?(?:[eE][-+]?\d+)?/ } ] , relevance : 0
} , c = { className : "meta" , begin : /#\s*[a-z]+\b/ , end : /$/ , keywords : {
keyword : "if else elif endif define undef warning error line pragma _Pragma ifdef ifndef elifdef elifndef include"
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , contains : [ { begin : /\\\n/ , relevance : 0 } , e . inherit ( o , { className : "string" } ) , {
className : "string" , begin : /<.*?>/ } , t , e . C _BLOCK _COMMENT _MODE ] } , d = {
className : "title" , begin : n . optional ( i ) + e . IDENT _RE , relevance : 0
} , g = n . optional ( i ) + e . IDENT _RE + "\\s*\\(" , u = {
2026-06-11 22:16:29 +02:00
keyword : [ "asm" , "auto" , "break" , "case" , "continue" , "default" , "do" , "else" , "enum" , "extern" , "for" , "fortran" , "goto" , "if" , "inline" , "register" , "restrict" , "return" , "sizeof" , "typeof" , "typeof_unqual" , "struct" , "switch" , "typedef" , "union" , "volatile" , "while" , "_Alignas" , "_Alignof" , "_Atomic" , "_Generic" , "_Noreturn" , "_Static_assert" , "_Thread_local" , "alignas" , "alignof" , "noreturn" , "static_assert" , "thread_local" , "_Pragma" ] ,
type : [ "float" , "double" , "signed" , "unsigned" , "int" , "short" , "long" , "char" , "void" , "_Bool" , "_BitInt" , "_Complex" , "_Imaginary" , "_Decimal32" , "_Decimal64" , "_Decimal96" , "_Decimal128" , "_Decimal64x" , "_Decimal128x" , "_Float16" , "_Float32" , "_Float64" , "_Float128" , "_Float32x" , "_Float64x" , "_Float128x" , "const" , "static" , "constexpr" , "complex" , "bool" , "imaginary" ] ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
literal : "true false NULL" ,
built _in : "std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"
} , b = [ c , s , t , e . C _BLOCK _COMMENT _MODE , l , o ] , m = { variants : [ { begin : /=/ , end : /;/ } , {
begin : /\(/ , end : /\)/ } , { beginKeywords : "new throw return else" , end : /;/ } ] ,
keywords : u , contains : b . concat ( [ { begin : /\(/ , end : /\)/ , keywords : u ,
contains : b . concat ( [ "self" ] ) , relevance : 0 } ] ) , relevance : 0 } , p = {
begin : "(" + r + "[\\*&\\s]+)+" + g , returnBegin : ! 0 , end : /[{;=]/ , excludeEnd : ! 0 ,
keywords : u , illegal : /[^\w\s\*&:<>.]/ , contains : [ { begin : a , keywords : u , relevance : 0 } , {
begin : g , returnBegin : ! 0 , contains : [ e . inherit ( d , { className : "title.function" } ) ] ,
relevance : 0 } , { relevance : 0 , match : /,/ } , { className : "params" , begin : /\(/ , end : /\)/ ,
keywords : u , relevance : 0 , contains : [ t , e . C _BLOCK _COMMENT _MODE , o , l , s , { begin : /\(/ ,
end : /\)/ , keywords : u , relevance : 0 , contains : [ "self" , t , e . C _BLOCK _COMMENT _MODE , o , l , s ]
} ] } , s , t , e . C _BLOCK _COMMENT _MODE , c ] } ; return { name : "C" , aliases : [ "h" ] , keywords : u ,
disableAutodetect : ! 0 , illegal : "</" , contains : [ ] . concat ( m , p , b , [ c , {
begin : e . IDENT _RE + "::" , keywords : u } , { className : "class" ,
beginKeywords : "enum class struct union" , end : /[{;:<>=]/ , contains : [ {
beginKeywords : "final class struct" } , e . TITLE _MODE ] } ] ) , exports : { preprocessor : c ,
strings : o , keywords : u } } } , grmr _cpp : e => { const n = e . regex , t = e . COMMENT ( "//" , "$" , {
contains : [ { begin : /\\\n/ } ]
} ) , a = "decltype\\(auto\\)" , i = "[a-zA-Z_]\\w*::" , r = "(?!struct)(" + a + "|" + n . optional ( i ) + "[a-zA-Z_]\\w*" + n . optional ( "<[^<>]+>" ) + ")" , s = {
className : "type" , begin : "\\b[a-z\\d_]*_t\\b" } , o = { className : "string" , variants : [ {
begin : '(u8?|U|L)?"' , end : '"' , illegal : "\\n" , contains : [ e . BACKSLASH _ESCAPE ] } , {
begin : "(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)" ,
end : "'" , illegal : "." } , e . END _SAME _AS _BEGIN ( {
begin : /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/ , end : /\)([^()\\ ]{0,16})"/ } ) ] } , l = {
2026-06-11 22:16:29 +02:00
className : "number" , variants : [ {
begin : "[+-]?(?:(?:[0-9](?:'?[0-9])*\\.(?:[0-9](?:'?[0-9])*)?|\\.[0-9](?:'?[0-9])*)(?:[Ee][+-]?[0-9](?:'?[0-9])*)?|[0-9](?:'?[0-9])*[Ee][+-]?[0-9](?:'?[0-9])*|0[Xx](?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*(?:\\.(?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)?)?|\\.[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)[Pp][+-]?[0-9](?:'?[0-9])*)(?:[Ff](?:16|32|64|128)?|(BF|bf)16|[Ll]|)"
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , {
2026-06-11 22:16:29 +02:00
begin : "[+-]?\\b(?:0[Bb][01](?:'?[01])*|0[Xx][0-9A-Fa-f](?:'?[0-9A-Fa-f])*|0(?:'?[0-7])*|[1-9](?:'?[0-9])*)(?:[Uu](?:LL?|ll?)|[Uu][Zz]?|(?:LL?|ll?)[Uu]?|[Zz][Uu]|)"
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} ] , relevance : 0 } , c = { className : "meta" , begin : /#\s*[a-z]+\b/ , end : /$/ , keywords : {
keyword : "if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
} , contains : [ { begin : /\\\n/ , relevance : 0 } , e . inherit ( o , { className : "string" } ) , {
className : "string" , begin : /<.*?>/ } , t , e . C _BLOCK _COMMENT _MODE ] } , d = {
className : "title" , begin : n . optional ( i ) + e . IDENT _RE , relevance : 0
} , g = n . optional ( i ) + e . IDENT _RE + "\\s*\\(" , u = {
type : [ "bool" , "char" , "char16_t" , "char32_t" , "char8_t" , "double" , "float" , "int" , "long" , "short" , "void" , "wchar_t" , "unsigned" , "signed" , "const" , "static" ] ,
keyword : [ "alignas" , "alignof" , "and" , "and_eq" , "asm" , "atomic_cancel" , "atomic_commit" , "atomic_noexcept" , "auto" , "bitand" , "bitor" , "break" , "case" , "catch" , "class" , "co_await" , "co_return" , "co_yield" , "compl" , "concept" , "const_cast|10" , "consteval" , "constexpr" , "constinit" , "continue" , "decltype" , "default" , "delete" , "do" , "dynamic_cast|10" , "else" , "enum" , "explicit" , "export" , "extern" , "false" , "final" , "for" , "friend" , "goto" , "if" , "import" , "inline" , "module" , "mutable" , "namespace" , "new" , "noexcept" , "not" , "not_eq" , "nullptr" , "operator" , "or" , "or_eq" , "override" , "private" , "protected" , "public" , "reflexpr" , "register" , "reinterpret_cast|10" , "requires" , "return" , "sizeof" , "static_assert" , "static_cast|10" , "struct" , "switch" , "synchronized" , "template" , "this" , "thread_local" , "throw" , "transaction_safe" , "transaction_safe_dynamic" , "true" , "try" , "typedef" , "typeid" , "typename" , "union" , "using" , "virtual" , "volatile" , "while" , "xor" , "xor_eq" ] ,
literal : [ "NULL" , "false" , "nullopt" , "nullptr" , "true" ] , built _in : [ "_Pragma" ] ,
2026-06-11 22:16:29 +02:00
_type _hints : [ "any" , "auto_ptr" , "barrier" , "binary_semaphore" , "bitset" , "complex" , "condition_variable" , "condition_variable_any" , "counting_semaphore" , "deque" , "false_type" , "flat_map" , "flat_set" , "future" , "imaginary" , "initializer_list" , "istringstream" , "jthread" , "latch" , "lock_guard" , "multimap" , "multiset" , "mutex" , "optional" , "ostringstream" , "packaged_task" , "pair" , "promise" , "priority_queue" , "queue" , "recursive_mutex" , "recursive_timed_mutex" , "scoped_lock" , "set" , "shared_future" , "shared_lock" , "shared_mutex" , "shared_timed_mutex" , "shared_ptr" , "stack" , "string_view" , "stringstream" , "timed_mutex" , "thread" , "true_type" , "tuple" , "unique_lock" , "unique_ptr" , "unordered_map" , "unordered_multimap" , "unordered_multiset" , "unordered_set" , "variant" , "vector" , "weak_ptr" , "wstring" , "wstring_view" ]
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , b = { className : "function.dispatch" , relevance : 0 , keywords : {
_hint : [ "abort" , "abs" , "acos" , "apply" , "as_const" , "asin" , "atan" , "atan2" , "calloc" , "ceil" , "cerr" , "cin" , "clog" , "cos" , "cosh" , "cout" , "declval" , "endl" , "exchange" , "exit" , "exp" , "fabs" , "floor" , "fmod" , "forward" , "fprintf" , "fputs" , "free" , "frexp" , "fscanf" , "future" , "invoke" , "isalnum" , "isalpha" , "iscntrl" , "isdigit" , "isgraph" , "islower" , "isprint" , "ispunct" , "isspace" , "isupper" , "isxdigit" , "labs" , "launder" , "ldexp" , "log" , "log10" , "make_pair" , "make_shared" , "make_shared_for_overwrite" , "make_tuple" , "make_unique" , "malloc" , "memchr" , "memcmp" , "memcpy" , "memset" , "modf" , "move" , "pow" , "printf" , "putchar" , "puts" , "realloc" , "scanf" , "sin" , "sinh" , "snprintf" , "sprintf" , "sqrt" , "sscanf" , "std" , "stderr" , "stdin" , "stdout" , "strcat" , "strchr" , "strcmp" , "strcpy" , "strcspn" , "strlen" , "strncat" , "strncmp" , "strncpy" , "strpbrk" , "strrchr" , "strspn" , "strstr" , "swap" , "tan" , "tanh" , "terminate" , "to_underlying" , "tolower" , "toupper" , "vfprintf" , "visit" , "vprintf" , "vsprintf" ]
} ,
begin : n . concat ( /\b/ , /(?!decltype)/ , /(?!if)/ , /(?!for)/ , /(?!switch)/ , /(?!while)/ , e . IDENT _RE , n . lookahead ( /(<[^<>]+>|)\s*\(/ ) )
} , m = [ b , c , s , t , e . C _BLOCK _COMMENT _MODE , l , o ] , p = { variants : [ { begin : /=/ , end : /;/ } , {
begin : /\(/ , end : /\)/ } , { beginKeywords : "new throw return else" , end : /;/ } ] ,
keywords : u , contains : m . concat ( [ { begin : /\(/ , end : /\)/ , keywords : u ,
contains : m . concat ( [ "self" ] ) , relevance : 0 } ] ) , relevance : 0 } , _ = { className : "function" ,
begin : "(" + r + "[\\*&\\s]+)+" + g , returnBegin : ! 0 , end : /[{;=]/ , excludeEnd : ! 0 ,
keywords : u , illegal : /[^\w\s\*&:<>.]/ , contains : [ { begin : a , keywords : u , relevance : 0 } , {
begin : g , returnBegin : ! 0 , contains : [ d ] , relevance : 0 } , { begin : /::/ , relevance : 0 } , {
begin : /:/ , endsWithParent : ! 0 , contains : [ o , l ] } , { relevance : 0 , match : /,/ } , {
className : "params" , begin : /\(/ , end : /\)/ , keywords : u , relevance : 0 ,
contains : [ t , e . C _BLOCK _COMMENT _MODE , o , l , s , { begin : /\(/ , end : /\)/ , keywords : u ,
relevance : 0 , contains : [ "self" , t , e . C _BLOCK _COMMENT _MODE , o , l , s ] } ]
} , s , t , e . C _BLOCK _COMMENT _MODE , c ] } ; return { name : "C++" ,
aliases : [ "cc" , "c++" , "h++" , "hpp" , "hh" , "hxx" , "cxx" ] , keywords : u , illegal : "</" ,
classNameAliases : { "function.dispatch" : "built_in" } ,
contains : [ ] . concat ( p , _ , b , m , [ c , {
2026-06-11 22:16:29 +02:00
begin : "\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function|flat_map|flat_set)\\s*<(?!<)" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
end : ">" , keywords : u , contains : [ "self" , s ] } , { begin : e . IDENT _RE + "::" , keywords : u } , {
match : [ /\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/ , /\s+/ , /\w+/ ] ,
className : { 1 : "keyword" , 3 : "title.class" } } ] ) } } , grmr _csharp : e => { const n = {
2026-06-11 22:16:29 +02:00
keyword : [ "abstract" , "as" , "base" , "break" , "case" , "catch" , "class" , "const" , "continue" , "do" , "else" , "event" , "explicit" , "extern" , "finally" , "fixed" , "for" , "foreach" , "goto" , "if" , "implicit" , "in" , "interface" , "internal" , "is" , "lock" , "namespace" , "new" , "operator" , "out" , "override" , "params" , "private" , "protected" , "public" , "readonly" , "record" , "ref" , "return" , "scoped" , "sealed" , "sizeof" , "stackalloc" , "static" , "struct" , "switch" , "this" , "throw" , "try" , "typeof" , "unchecked" , "unsafe" , "using" , "virtual" , "void" , "volatile" , "while" ] . concat ( [ "add" , "alias" , "and" , "ascending" , "args" , "async" , "await" , "by" , "descending" , "dynamic" , "equals" , "file" , "from" , "get" , "global" , "group" , "init" , "into" , "join" , "let" , "nameof" , "not" , "notnull" , "on" , "or" , "orderby" , "partial" , "record" , "remove" , "required" , "scoped" , "select" , "set" , "unmanaged" , "value|0" , "var" , "when" , "where" , "with" , "yield" ] ) ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
built _in : [ "bool" , "byte" , "char" , "decimal" , "delegate" , "double" , "dynamic" , "enum" , "float" , "int" , "long" , "nint" , "nuint" , "object" , "sbyte" , "short" , "string" , "ulong" , "uint" , "ushort" ] ,
literal : [ "default" , "false" , "null" , "true" ] } , t = e . inherit ( e . TITLE _MODE , {
begin : "[a-zA-Z](\\.?\\w)*" } ) , a = { className : "number" , variants : [ {
begin : "\\b(0b[01']+)" } , {
begin : "(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)" } , {
begin : "(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
} ] , relevance : 0 } , i = { className : "string" , begin : '@"' , end : '"' , contains : [ { begin : '""' } ]
} , r = e . inherit ( i , { illegal : /\n/ } ) , s = { className : "subst" , begin : /\{/ , end : /\}/ ,
keywords : n } , o = e . inherit ( s , { illegal : /\n/ } ) , l = { className : "string" , begin : /\$"/ ,
end : '"' , illegal : /\n/ , contains : [ { begin : /\{\{/ } , { begin : /\}\}/
} , e . BACKSLASH _ESCAPE , o ] } , c = { className : "string" , begin : /\$@"/ , end : '"' , contains : [ {
begin : /\{\{/ } , { begin : /\}\}/ } , { begin : '""' } , s ] } , d = e . inherit ( c , { illegal : /\n/ ,
contains : [ { begin : /\{\{/ } , { begin : /\}\}/ } , { begin : '""' } , o ] } )
; s . contains = [ c , l , i , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , a , e . C _BLOCK _COMMENT _MODE ] ,
o . contains = [ d , l , r , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , a , e . inherit ( e . C _BLOCK _COMMENT _MODE , {
2026-06-11 22:16:29 +02:00
illegal : /\n/ } ) ] ; const g = { variants : [ { className : "string" ,
begin : /"""("*)(?!")(.|\n)*?"""\1/ , relevance : 1
} , c , l , i , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ] } , u = { begin : "<" , end : ">" ,
contains : [ { beginKeywords : "in out" } , t ]
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , b = e . IDENT _RE + "(<" + e . IDENT _RE + "(\\s*,\\s*" + e . IDENT _RE + ")*>)?(\\[\\])?" , m = {
begin : "@" + e . IDENT _RE , relevance : 0 } ; return { name : "C#" , aliases : [ "cs" , "c#" ] ,
keywords : n , illegal : /::/ , contains : [ e . COMMENT ( "///" , "$" , { returnBegin : ! 0 ,
contains : [ { className : "doctag" , variants : [ { begin : "///" , relevance : 0 } , {
begin : "\x3c!--|--\x3e" } , { begin : "</?" , end : ">" } ] } ]
} ) , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { className : "meta" , begin : "#" ,
end : "$" , keywords : {
keyword : "if else elif endif define undef warning error line region endregion pragma checksum"
} } , g , a , { beginKeywords : "class interface" , relevance : 0 , end : /[{;=]/ ,
illegal : /[^\s:,]/ , contains : [ { beginKeywords : "where class"
} , t , u , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , { beginKeywords : "namespace" ,
relevance : 0 , end : /[{;=]/ , illegal : /[^\s:]/ ,
contains : [ t , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , {
beginKeywords : "record" , relevance : 0 , end : /[{;=]/ , illegal : /[^\s:]/ ,
contains : [ t , u , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , { className : "meta" ,
begin : "^\\s*\\[(?=[\\w])" , excludeBegin : ! 0 , end : "\\]" , excludeEnd : ! 0 , contains : [ {
className : "string" , begin : /"/ , end : /"/ } ] } , {
beginKeywords : "new return throw await else" , relevance : 0 } , { className : "function" ,
begin : "(" + b + "\\s+)+" + e . IDENT _RE + "\\s*(<[^=]+>\\s*)?\\(" , returnBegin : ! 0 ,
end : /\s*[{;=]/ , excludeEnd : ! 0 , keywords : n , contains : [ {
beginKeywords : "public private protected static internal protected abstract async extern override unsafe virtual new sealed partial" ,
relevance : 0 } , { begin : e . IDENT _RE + "\\s*(<[^=]+>\\s*)?\\(" , returnBegin : ! 0 ,
contains : [ e . TITLE _MODE , u ] , relevance : 0 } , { match : /\(\)/ } , { className : "params" ,
begin : /\(/ , end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , keywords : n , relevance : 0 ,
contains : [ g , a , e . C _BLOCK _COMMENT _MODE ]
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , m ] } } , grmr _css : e => {
2026-06-11 22:16:29 +02:00
const n = e . regex , t = te ( e ) , a = [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ] ; return {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
name : "CSS" , case _insensitive : ! 0 , illegal : /[=|'\$]/ , keywords : {
keyframePosition : "from to" } , classNameAliases : { keyframePosition : "selector-tag" } ,
contains : [ t . BLOCK _COMMENT , { begin : /-(webkit|moz|ms|o)-(?=[a-z])/
} , t . CSS _NUMBER _MODE , { className : "selector-id" , begin : /#[A-Za-z0-9_-]+/ , relevance : 0
} , { className : "selector-class" , begin : "\\.[a-zA-Z-][a-zA-Z0-9_-]*" , relevance : 0
} , t . ATTRIBUTE _SELECTOR _MODE , { className : "selector-pseudo" , variants : [ {
2026-06-11 22:16:29 +02:00
begin : ":(" + re . join ( "|" ) + ")" } , { begin : ":(:)?(" + se . join ( "|" ) + ")" } ]
} , t . CSS _VARIABLE , { className : "attribute" , begin : "\\b(" + oe . join ( "|" ) + ")\\b" } , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : /:/ , end : /[;}{]/ ,
contains : [ t . BLOCK _COMMENT , t . HEXCOLOR , t . IMPORTANT , t . CSS _NUMBER _MODE , ... a , {
begin : /(url|data-uri)\(/ , end : /\)/ , relevance : 0 , keywords : { built _in : "url data-uri"
} , contains : [ ... a , { className : "string" , begin : /[^)]/ , endsWithParent : ! 0 ,
excludeEnd : ! 0 } ] } , t . FUNCTION _DISPATCH ] } , { begin : n . lookahead ( /@/ ) , end : "[{;]" ,
relevance : 0 , illegal : /:/ , contains : [ { className : "keyword" , begin : /@-?\w[\w]*(-\w+)*/
} , { begin : /\s/ , endsWithParent : ! 0 , excludeEnd : ! 0 , relevance : 0 , keywords : {
2026-06-11 22:16:29 +02:00
$pattern : /[a-z-]+/ , keyword : "and or not only" , attribute : ie . join ( " " ) } , contains : [ {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : /[a-z-]+(?=:)/ , className : "attribute" } , ... a , t . CSS _NUMBER _MODE ] } ] } , {
2026-06-11 22:16:29 +02:00
className : "selector-tag" , begin : "\\b(" + ae . join ( "|" ) + ")\\b" } ] } } , grmr _diff : e => {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
const n = e . regex ; return { name : "Diff" , aliases : [ "patch" ] , contains : [ {
className : "meta" , relevance : 10 ,
match : n . either ( /^@@ +-\d+,\d+ +\+\d+,\d+ +@@/ , /^\*\*\* +\d+,\d+ +\*\*\*\*$/ , /^--- +\d+,\d+ +----$/ )
} , { className : "comment" , variants : [ {
begin : n . either ( /Index: / , /^index/ , /={3,}/ , /^-{3}/ , /^\*{3} / , /^\+{3}/ , /^diff --git/ ) ,
end : /$/ } , { match : /^\*{15}$/ } ] } , { className : "addition" , begin : /^\+/ , end : /$/ } , {
className : "deletion" , begin : /^-/ , end : /$/ } , { className : "addition" , begin : /^!/ ,
end : /$/ } ] } } , grmr _go : e => { const n = {
keyword : [ "break" , "case" , "chan" , "const" , "continue" , "default" , "defer" , "else" , "fallthrough" , "for" , "func" , "go" , "goto" , "if" , "import" , "interface" , "map" , "package" , "range" , "return" , "select" , "struct" , "switch" , "type" , "var" ] ,
type : [ "bool" , "byte" , "complex64" , "complex128" , "error" , "float32" , "float64" , "int8" , "int16" , "int32" , "int64" , "string" , "uint8" , "uint16" , "uint32" , "uint64" , "int" , "uint" , "uintptr" , "rune" ] ,
literal : [ "true" , "false" , "iota" , "nil" ] ,
built _in : [ "append" , "cap" , "close" , "complex" , "copy" , "imag" , "len" , "make" , "new" , "panic" , "print" , "println" , "real" , "recover" , "delete" ]
} ; return { name : "Go" , aliases : [ "golang" ] , keywords : n , illegal : "</" ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { className : "string" ,
variants : [ e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , { begin : "`" , end : "`" } ] } , {
2026-06-11 22:16:29 +02:00
className : "number" , variants : [ {
match : /-?\b0[xX]\.[a-fA-F0-9](_?[a-fA-F0-9])*[pP][+-]?\d(_?\d)*i?/ , relevance : 0
} , {
match : /-?\b0[xX](_?[a-fA-F0-9])+((\.([a-fA-F0-9](_?[a-fA-F0-9])*)?)?[pP][+-]?\d(_?\d)*)?i?/ ,
relevance : 0 } , { match : /-?\b0[oO](_?[0-7])*i?/ , relevance : 0 } , {
match : /-?\.\d(_?\d)*([eE][+-]?\d(_?\d)*)?i?/ , relevance : 0 } , {
match : /-?\b\d(_?\d)*(\.(\d(_?\d)*)?)?([eE][+-]?\d(_?\d)*)?i?/ , relevance : 0 } ] } , {
begin : /:=/ } , { className : "function" , beginKeywords : "func" , end : "\\s*(\\{|$)" ,
excludeEnd : ! 0 , contains : [ e . TITLE _MODE , { className : "params" , begin : /\(/ , end : /\)/ ,
endsParent : ! 0 , keywords : n , illegal : /["']/ } ] } ] } } , grmr _graphql : e => { const n = e . regex
; return { name : "GraphQL" , aliases : [ "gql" ] , case _insensitive : ! 0 , disableAutodetect : ! 1 ,
keywords : {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
keyword : [ "query" , "mutation" , "subscription" , "type" , "input" , "schema" , "directive" , "interface" , "union" , "scalar" , "fragment" , "enum" , "on" ] ,
literal : [ "true" , "false" , "null" ] } ,
contains : [ e . HASH _COMMENT _MODE , e . QUOTE _STRING _MODE , e . NUMBER _MODE , {
scope : "punctuation" , match : /[.]{3}/ , relevance : 0 } , { scope : "punctuation" ,
begin : /[\!\(\)\:\=\[\]\{\|\}]{1}/ , relevance : 0 } , { scope : "variable" , begin : /\$/ ,
end : /\W/ , excludeEnd : ! 0 , relevance : 0 } , { scope : "meta" , match : /@\w+/ , excludeEnd : ! 0 } , {
scope : "symbol" , begin : n . concat ( /[_A-Za-z][_0-9A-Za-z]*/ , n . lookahead ( /\s*:/ ) ) ,
relevance : 0 } ] , illegal : [ /[;<']/ , /BEGIN/ ] } } , grmr _ini : e => { const n = e . regex , t = {
className : "number" , relevance : 0 , variants : [ { begin : /([+-]+)?[\d]+_[\d_]+/ } , {
begin : e . NUMBER _RE } ] } , a = e . COMMENT ( ) ; a . variants = [ { begin : /;/ , end : /$/ } , { begin : /#/ ,
end : /$/ } ] ; const i = { className : "variable" , variants : [ { begin : /\$[\w\d"][\w\d_]*/ } , {
begin : /\$\{(.*?)\}/ } ] } , r = { className : "literal" ,
begin : /\bon|off|true|false|yes|no\b/ } , s = { className : "string" ,
contains : [ e . BACKSLASH _ESCAPE ] , variants : [ { begin : "'''" , end : "'''" , relevance : 10 } , {
begin : '"""' , end : '"""' , relevance : 10 } , { begin : '"' , end : '"' } , { begin : "'" , end : "'" } ]
} , o = { begin : /\[/ , end : /\]/ , contains : [ a , r , i , s , t , "self" ] , relevance : 0
} , l = n . either ( /[A-Za-z0-9_-]+/ , /"(\\"|[^"])*"/ , /'[^']*'/ ) ; return {
name : "TOML, also INI" , aliases : [ "toml" ] , case _insensitive : ! 0 , illegal : /\S/ ,
contains : [ a , { className : "section" , begin : /\[+/ , end : /\]+/ } , {
begin : n . concat ( l , "(\\s*\\.\\s*" , l , ")*" , n . lookahead ( /\s*=\s*[^#\s]/ ) ) ,
className : "attr" , starts : { end : /$/ , contains : [ a , o , r , i , s , t ] } } ] } } , grmr _java : e => {
2026-06-11 22:16:29 +02:00
const n = e . regex , t = "[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*" , a = t + be ( "(?:<" + t + "~~~(?:\\s*,\\s*" + t + "~~~)*>)?" , /~~~/g , 2 ) , i = {
keyword : [ "synchronized" , "abstract" , "private" , "var" , "static" , "if" , "const " , "for" , "while" , "strictfp" , "finally" , "protected" , "import" , "native" , "final" , "void" , "enum" , "else" , "break" , "transient" , "catch" , "instanceof" , "volatile" , "case" , "assert" , "package" , "default" , "public" , "try" , "switch" , "continue" , "throws" , "protected" , "public" , "private" , "module" , "requires" , "exports" , "do" , "sealed" , "yield" , "permits" , "goto" , "when" ] ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
literal : [ "false" , "true" , "null" ] ,
type : [ "char" , "boolean" , "long" , "float" , "int" , "byte" , "short" , "double" ] ,
built _in : [ "super" , "this" ] } , r = { className : "meta" , begin : "@" + t , contains : [ {
begin : /\(/ , end : /\)/ , contains : [ "self" ] } ] } , s = { className : "params" , begin : /\(/ ,
end : /\)/ , keywords : i , relevance : 0 , contains : [ e . C _BLOCK _COMMENT _MODE ] , endsParent : ! 0 }
; return { name : "Java" , aliases : [ "jsp" ] , keywords : i , illegal : /<\/|#/ ,
contains : [ e . COMMENT ( "/\\*\\*" , "\\*/" , { relevance : 0 , contains : [ { begin : /\w+@/ ,
relevance : 0 } , { className : "doctag" , begin : "@[A-Za-z]+" } ] } ) , {
begin : /import java\.[a-z]+\./ , keywords : "import" , relevance : 2
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { begin : /"""/ , end : /"""/ ,
className : "string" , contains : [ e . BACKSLASH _ESCAPE ]
} , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , {
match : [ /\b(?:class|interface|enum|extends|implements|new)/ , /\s+/ , t ] , className : {
1 : "keyword" , 3 : "title.class" } } , { match : /non-sealed/ , scope : "keyword" } , {
begin : [ n . concat ( /(?!else)/ , t ) , /\s+/ , t , /\s+/ , /=(?!=)/ ] , className : { 1 : "type" ,
3 : "variable" , 5 : "operator" } } , { begin : [ /record/ , /\s+/ , t ] , className : { 1 : "keyword" ,
3 : "title.class" } , contains : [ s , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , {
beginKeywords : "new throw return else" , relevance : 0 } , {
begin : [ "(?:" + a + "\\s+)" , e . UNDERSCORE _IDENT _RE , /\s*(?=\()/ ] , className : {
2 : "title.function" } , keywords : i , contains : [ { className : "params" , begin : /\(/ ,
end : /\)/ , keywords : i , relevance : 0 ,
2026-06-11 22:16:29 +02:00
contains : [ r , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , ue , e . C _BLOCK _COMMENT _MODE ]
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , ue , r ] } } , grmr _javascript : ve ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
grmr _json : e => { const n = [ "true" , "false" , "null" ] , t = { scope : "literal" ,
2026-06-11 22:16:29 +02:00
beginKeywords : n . join ( " " ) } ; return { name : "JSON" , aliases : [ "jsonc" ] , keywords : {
literal : n } , contains : [ { className : "attr" , begin : /"(\\.|[^\\"\r\n])*"(?=\s*:)/ ,
relevance : 1.01 } , { match : /[{}[\],:]/ , className : "punctuation" , relevance : 0
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , e . QUOTE _STRING _MODE , t , e . C _NUMBER _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] ,
illegal : "\\S" } } , grmr _kotlin : e => { const n = {
keyword : "abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual" ,
built _in : "Byte Short Char Int Long Boolean Float Double Void Unit Nothing" ,
literal : "true false null" } , t = { className : "symbol" , begin : e . UNDERSCORE _IDENT _RE + "@"
} , a = { className : "subst" , begin : /\$\{/ , end : /\}/ , contains : [ e . C _NUMBER _MODE ] } , i = {
className : "variable" , begin : "\\$" + e . UNDERSCORE _IDENT _RE } , r = { className : "string" ,
variants : [ { begin : '"""' , end : '"""(?=[^"])' , contains : [ i , a ] } , { begin : "'" , end : "'" ,
illegal : /\n/ , contains : [ e . BACKSLASH _ESCAPE ] } , { begin : '"' , end : '"' , illegal : /\n/ ,
contains : [ e . BACKSLASH _ESCAPE , i , a ] } ] } ; a . contains . push ( r ) ; const s = {
className : "meta" ,
begin : "@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*" + e . UNDERSCORE _IDENT _RE + ")?"
} , o = { className : "meta" , begin : "@" + e . UNDERSCORE _IDENT _RE , contains : [ { begin : /\(/ ,
end : /\)/ , contains : [ e . inherit ( r , { className : "string" } ) , "self" ] } ]
2026-06-11 22:16:29 +02:00
} , l = ue , c = e . COMMENT ( "/\\*" , "\\*/" , { contains : [ e . C _BLOCK _COMMENT _MODE ] } ) , d = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
variants : [ { className : "type" , begin : e . UNDERSCORE _IDENT _RE } , { begin : /\(/ , end : /\)/ ,
contains : [ ] } ] } , g = d ; return g . variants [ 1 ] . contains = [ d ] , d . variants [ 1 ] . contains = [ g ] ,
{ name : "Kotlin" , aliases : [ "kt" , "kts" ] , keywords : n ,
contains : [ e . COMMENT ( "/\\*\\*" , "\\*/" , { relevance : 0 , contains : [ { className : "doctag" ,
begin : "@[A-Za-z]+" } ] } ) , e . C _LINE _COMMENT _MODE , c , { className : "keyword" ,
begin : /\b(break|continue|return|this)\b/ , starts : { contains : [ { className : "symbol" ,
begin : /@\w+/ } ] } } , t , s , o , { className : "function" , beginKeywords : "fun" , end : "[(]|$" ,
returnBegin : ! 0 , excludeEnd : ! 0 , keywords : n , relevance : 5 , contains : [ {
begin : e . UNDERSCORE _IDENT _RE + "\\s*\\(" , returnBegin : ! 0 , relevance : 0 ,
contains : [ e . UNDERSCORE _TITLE _MODE ] } , { className : "type" , begin : /</ , end : />/ ,
keywords : "reified" , relevance : 0 } , { className : "params" , begin : /\(/ , end : /\)/ ,
endsParent : ! 0 , keywords : n , relevance : 0 , contains : [ { begin : /:/ , end : /[=,\/]/ ,
endsWithParent : ! 0 , contains : [ d , e . C _LINE _COMMENT _MODE , c ] , relevance : 0
} , e . C _LINE _COMMENT _MODE , c , s , o , r , e . C _NUMBER _MODE ] } , c ] } , {
begin : [ /class|interface|trait/ , /\s+/ , e . UNDERSCORE _IDENT _RE ] , beginScope : {
3 : "title.class" } , keywords : "class interface trait" , end : /[:\{(]|$/ , excludeEnd : ! 0 ,
illegal : "extends implements" , contains : [ {
beginKeywords : "public protected internal private constructor"
} , e . UNDERSCORE _TITLE _MODE , { className : "type" , begin : /</ , end : />/ , excludeBegin : ! 0 ,
excludeEnd : ! 0 , relevance : 0 } , { className : "type" , begin : /[,:]\s*/ , end : /[<\(,){\s]|$/ ,
excludeBegin : ! 0 , returnEnd : ! 0 } , s , o ] } , r , { className : "meta" , begin : "^#!/usr/bin/env" ,
end : "$" , illegal : "\n" } , l ] } } , grmr _less : e => {
2026-06-11 22:16:29 +02:00
const n = te ( e ) , t = le , a = "[\\w-]+" , i = "(" + a + "|@\\{" + a + "\\})" , r = [ ] , s = [ ] , o = e => ( {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
className : "string" , begin : "~?" + e + ".*?" + e } ) , l = ( e , n , t ) => ( { className : e , begin : n ,
relevance : t } ) , c = { $pattern : /[a-z-]+/ , keyword : "and or not only" ,
2026-06-11 22:16:29 +02:00
attribute : ie . join ( " " ) } , d = { begin : "\\(" , end : "\\)" , contains : s , keywords : c ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
relevance : 0 }
; s . push ( e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , o ( "'" ) , o ( '"' ) , n . CSS _NUMBER _MODE , {
begin : "(url|data-uri)\\(" , starts : { className : "string" , end : "[\\)\\n]" ,
excludeEnd : ! 0 }
} , n . HEXCOLOR , d , l ( "variable" , "@@?" + a , 10 ) , l ( "variable" , "@\\{" + a + "\\}" ) , l ( "built_in" , "~?`[^`]*?`" ) , {
className : "attribute" , begin : a + "\\s*:" , end : ":" , returnBegin : ! 0 , excludeEnd : ! 0
} , n . IMPORTANT , { beginKeywords : "and not" } , n . FUNCTION _DISPATCH ) ; const g = s . concat ( {
begin : /\{/ , end : /\}/ , contains : r } ) , u = { beginKeywords : "when" , endsWithParent : ! 0 ,
contains : [ { beginKeywords : "and not" } ] . concat ( s ) } , b = { begin : i + "\\s*:" ,
returnBegin : ! 0 , end : /[;}]/ , relevance : 0 , contains : [ { begin : /-(webkit|moz|ms|o)-/
2026-06-11 22:16:29 +02:00
} , n . CSS _VARIABLE , { className : "attribute" , begin : "\\b(" + oe . join ( "|" ) + ")\\b" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
end : /(?=:)/ , starts : { endsWithParent : ! 0 , illegal : "[<=$]" , relevance : 0 , contains : s } } ]
} , m = { className : "keyword" ,
begin : "@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b" ,
starts : { end : "[;{}]" , keywords : c , returnEnd : ! 0 , contains : s , relevance : 0 } } , p = {
className : "variable" , variants : [ { begin : "@" + a + "\\s*:" , relevance : 15 } , { begin : "@" + a
} ] , starts : { end : "[;}]" , returnEnd : ! 0 , contains : g } } , _ = { variants : [ {
begin : "[\\.#:&\\[>]" , end : "[;{}]" } , { begin : i , end : /\{/ } ] , returnBegin : ! 0 ,
returnEnd : ! 0 , illegal : "[<='$\"]" , relevance : 0 ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , u , l ( "keyword" , "all\\b" ) , l ( "variable" , "@\\{" + a + "\\}" ) , {
2026-06-11 22:16:29 +02:00
begin : "\\b(" + ae . join ( "|" ) + ")\\b" , className : "selector-tag"
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , n . CSS _NUMBER _MODE , l ( "selector-tag" , i , 0 ) , l ( "selector-id" , "#" + i ) , l ( "selector-class" , "\\." + i , 0 ) , l ( "selector-tag" , "&" , 0 ) , n . ATTRIBUTE _SELECTOR _MODE , {
2026-06-11 22:16:29 +02:00
className : "selector-pseudo" , begin : ":(" + re . join ( "|" ) + ")" } , {
className : "selector-pseudo" , begin : ":(:)?(" + se . join ( "|" ) + ")" } , { begin : /\(/ ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
end : /\)/ , relevance : 0 , contains : g } , { begin : "!important" } , n . FUNCTION _DISPATCH ] } , h = {
begin : a + ":(:)?" + ` ( ${ t . join ( "|" ) } ) ` , returnBegin : ! 0 , contains : [ _ ] }
; return r . push ( e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , m , p , h , b , _ , u , n . FUNCTION _DISPATCH ) ,
{ name : "Less" , case _insensitive : ! 0 , illegal : "[=>'/<($\"]" , contains : r } } ,
grmr _lua : e => { const n = "\\[=*\\[" , t = "\\]=*\\]" , a = { begin : n , end : t , contains : [ "self" ]
} , i = [ e . COMMENT ( "--(?!" + n + ")" , "$" ) , e . COMMENT ( "--" + n , t , { contains : [ a ] , relevance : 10
2026-06-11 22:16:29 +02:00
} ) ] ; return { name : "Lua" , aliases : [ "pluto" ] , keywords : {
$pattern : e . UNDERSCORE _IDENT _RE , literal : "true false nil" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
keyword : "and break do else elseif end for goto if in local not or repeat return then until while" ,
built _in : "_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"
} , contains : i . concat ( [ { className : "function" , beginKeywords : "function" , end : "\\)" ,
contains : [ e . inherit ( e . TITLE _MODE , {
begin : "([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*" } ) , { className : "params" ,
begin : "\\(" , endsWithParent : ! 0 , contains : i } ] . concat ( i )
} , e . C _NUMBER _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , { className : "string" ,
begin : n , end : t , contains : [ a ] , relevance : 5 } ] ) } } , grmr _makefile : e => { const n = {
className : "variable" , variants : [ { begin : "\\$\\(" + e . UNDERSCORE _IDENT _RE + "\\)" ,
contains : [ e . BACKSLASH _ESCAPE ] } , { begin : /\$[@%<?\^\+\*]/ } ] } , t = { className : "string" ,
begin : /"/ , end : /"/ , contains : [ e . BACKSLASH _ESCAPE , n ] } , a = { className : "variable" ,
begin : /\$\([\w-]+\s/ , end : /\)/ , keywords : {
built _in : "subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value"
2026-06-11 22:16:29 +02:00
} , contains : [ n , t ] } , i = { begin : "^" + e . UNDERSCORE _IDENT _RE + "\\s*(?=[:+?]?=)" } , r = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
className : "section" , begin : /^[^\s]+:/ , end : /$/ , contains : [ n ] } ; return {
name : "Makefile" , aliases : [ "mk" , "mak" , "make" ] , keywords : { $pattern : /[\w-]+/ ,
keyword : "define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath"
} , contains : [ e . HASH _COMMENT _MODE , n , t , a , i , { className : "meta" , begin : /^\.PHONY:/ ,
end : /$/ , keywords : { $pattern : /[\.\w]+/ , keyword : ".PHONY" } } , r ] } } , grmr _markdown : e => {
const n = { begin : /<\/?[A-Za-z_]/ , end : ">" , subLanguage : "xml" , relevance : 0 } , t = {
variants : [ { begin : /\[.+?\]\[.*?\]/ , relevance : 0 } , {
begin : /\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/ ,
relevance : 2 } , {
begin : e . regex . concat ( /\[.+?\]\(/ , /[A-Za-z][A-Za-z0-9+.-]*/ , /:\/\/.*?\)/ ) ,
relevance : 2 } , { begin : /\[.+?\]\([./?&#].*?\)/ , relevance : 1 } , {
begin : /\[.*?\]\(.*?\)/ , relevance : 0 } ] , returnBegin : ! 0 , contains : [ { match : /\[(?=\])/
} , { className : "string" , relevance : 0 , begin : "\\[" , end : "\\]" , excludeBegin : ! 0 ,
returnEnd : ! 0 } , { className : "link" , relevance : 0 , begin : "\\]\\(" , end : "\\)" ,
excludeBegin : ! 0 , excludeEnd : ! 0 } , { className : "symbol" , relevance : 0 , begin : "\\]\\[" ,
end : "\\]" , excludeBegin : ! 0 , excludeEnd : ! 0 } ] } , a = { className : "strong" , contains : [ ] ,
variants : [ { begin : /_{2}(?!\s)/ , end : /_{2}/ } , { begin : /\*{2}(?!\s)/ , end : /\*{2}/ } ]
} , i = { className : "emphasis" , contains : [ ] , variants : [ { begin : /\*(?![*\s])/ , end : /\*/ } , {
begin : /_(?![_\s])/ , end : /_/ , relevance : 0 } ] } , r = e . inherit ( a , { contains : [ ]
} ) , s = e . inherit ( i , { contains : [ ] } ) ; a . contains . push ( s ) , i . contains . push ( r )
; let o = [ n , t ] ; return [ a , i , r , s ] . forEach ( ( e => { e . contains = e . contains . concat ( o )
} ) ) , o = o . concat ( a , i ) , { name : "Markdown" , aliases : [ "md" , "mkdown" , "mkd" ] , contains : [ {
className : "section" , variants : [ { begin : "^#{1,6}" , end : "$" , contains : o } , {
begin : "(?=^.+?\\n[=-]{2,}$)" , contains : [ { begin : "^[=-]*$" } , { begin : "^" , end : "\\n" ,
contains : o } ] } ] } , n , { className : "bullet" , begin : "^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)" ,
end : "\\s+" , excludeEnd : ! 0 } , a , i , { className : "quote" , begin : "^>\\s+" , contains : o ,
end : "$" } , { className : "code" , variants : [ { begin : "(`{3,})[^`](.|\\n)*?\\1`*[ ]*" } , {
begin : "(~{3,})[^~](.|\\n)*?\\1~*[ ]*" } , { begin : "```" , end : "```+[ ]*$" } , {
begin : "~~~" , end : "~~~+[ ]*$" } , { begin : "`.+?`" } , { begin : "(?=^( {4}|\\t))" ,
contains : [ { begin : "^( {4}|\\t)" , end : "(\\n)$" } ] , relevance : 0 } ] } , {
begin : "^[-\\*]{3,}" , end : "$" } , t , { begin : /^\[[^\n]+\]:/ , returnBegin : ! 0 , contains : [ {
className : "symbol" , begin : /\[/ , end : /\]/ , excludeBegin : ! 0 , excludeEnd : ! 0 } , {
2026-06-11 22:16:29 +02:00
className : "link" , begin : /:\s*/ , end : /$/ , excludeBegin : ! 0 } ] } , { scope : "literal" ,
match : /&([a-zA-Z0-9]+|#[0-9]{1,7}|#[Xx][0-9a-fA-F]{1,6});/ } ] } } ,
grmr _objectivec : e => { const n = /[a-zA-Z@][a-zA-Z0-9_]*/ , t = { $pattern : n ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
keyword : [ "@interface" , "@class" , "@protocol" , "@implementation" ] } ; return {
name : "Objective-C" , aliases : [ "mm" , "objc" , "obj-c" , "obj-c++" , "objective-c++" ] ,
keywords : { "variable.language" : [ "this" , "super" ] , $pattern : n ,
keyword : [ "while" , "export" , "sizeof" , "typedef" , "const" , "struct" , "for" , "union" , "volatile" , "static" , "mutable" , "if" , "do" , "return" , "goto" , "enum" , "else" , "break" , "extern" , "asm" , "case" , "default" , "register" , "explicit" , "typename" , "switch" , "continue" , "inline" , "readonly" , "assign" , "readwrite" , "self" , "@synchronized" , "id" , "typeof" , "nonatomic" , "IBOutlet" , "IBAction" , "strong" , "weak" , "copy" , "in" , "out" , "inout" , "bycopy" , "byref" , "oneway" , "__strong" , "__weak" , "__block" , "__autoreleasing" , "@private" , "@protected" , "@public" , "@try" , "@property" , "@end" , "@throw" , "@catch" , "@finally" , "@autoreleasepool" , "@synthesize" , "@dynamic" , "@selector" , "@optional" , "@required" , "@encode" , "@package" , "@import" , "@defs" , "@compatibility_alias" , "__bridge" , "__bridge_transfer" , "__bridge_retained" , "__bridge_retain" , "__covariant" , "__contravariant" , "__kindof" , "_Nonnull" , "_Nullable" , "_Null_unspecified" , "__FUNCTION__" , "__PRETTY_FUNCTION__" , "__attribute__" , "getter" , "setter" , "retain" , "unsafe_unretained" , "nonnull" , "nullable" , "null_unspecified" , "null_resettable" , "class" , "instancetype" , "NS_DESIGNATED_INITIALIZER" , "NS_UNAVAILABLE" , "NS_REQUIRES_SUPER" , "NS_RETURNS_INNER_POINTER" , "NS_INLINE" , "NS_AVAILABLE" , "NS_DEPRECATED" , "NS_ENUM" , "NS_OPTIONS" , "NS_SWIFT_UNAVAILABLE" , "NS_ASSUME_NONNULL_BEGIN" , "NS_ASSUME_NONNULL_END" , "NS_REFINED_FOR_SWIFT" , "NS_SWIFT_NAME" , "NS_SWIFT_NOTHROW" , "NS_DURING" , "NS_HANDLER" , "NS_ENDHANDLER" , "NS_VALUERETURN" , "NS_VOIDRETURN" ] ,
literal : [ "false" , "true" , "FALSE" , "TRUE" , "nil" , "YES" , "NO" , "NULL" ] ,
built _in : [ "dispatch_once_t" , "dispatch_queue_t" , "dispatch_sync" , "dispatch_async" , "dispatch_once" ] ,
type : [ "int" , "float" , "char" , "unsigned" , "signed" , "short" , "long" , "double" , "wchar_t" , "unichar" , "void" , "bool" , "BOOL" , "id|0" , "_Bool" ]
} , illegal : "</" , contains : [ { className : "built_in" ,
begin : "\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . C _NUMBER _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , {
className : "string" , variants : [ { begin : '@"' , end : '"' , illegal : "\\n" ,
contains : [ e . BACKSLASH _ESCAPE ] } ] } , { className : "meta" , begin : /#\s*[a-z]+\b/ , end : /$/ ,
keywords : {
keyword : "if else elif endif define undef warning error line pragma ifdef ifndef include"
} , contains : [ { begin : /\\\n/ , relevance : 0 } , e . inherit ( e . QUOTE _STRING _MODE , {
className : "string" } ) , { className : "string" , begin : /<.*?>/ , end : /$/ , illegal : "\\n"
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , { className : "class" ,
begin : "(" + t . keyword . join ( "|" ) + ")\\b" , end : /(\{|$)/ , excludeEnd : ! 0 , keywords : t ,
contains : [ e . UNDERSCORE _TITLE _MODE ] } , { begin : "\\." + e . UNDERSCORE _IDENT _RE ,
relevance : 0 } ] } } , grmr _perl : e => { const n = e . regex , t = /[dualxmsipngr]{0,12}/ , a = {
$pattern : /[\w.]+/ ,
2026-06-11 22:16:29 +02:00
keyword : "abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot class close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl field fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map method mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select semctl semget semop send setgrent sethostent setnetent setpgrp setpriority setprotoent setpwent setservent setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep socket socketpair sort splice split sprintf sqrt srand stat state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0"
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , i = { className : "subst" , begin : "[$@]\\{" , end : "\\}" , keywords : a } , r = { begin : /->\{/ ,
2026-06-11 22:16:29 +02:00
end : /\}/ } , s = { scope : "attr" , match : /\s+:\s*\w+(\s*\(.*?\))?/ } , o = { scope : "variable" ,
variants : [ { begin : /\$\d/ } , {
begin : n . concat ( /[$%@](?!")(\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/ , "(?![A-Za-z])(?![@$%])" )
} , { begin : /[$%@](?!")[^\s\w{=]|\$=/ , relevance : 0 } ] , contains : [ s ] } , l = {
className : "number" , variants : [ { match : /0?\.[0-9][0-9_]+\b/ } , {
match : /\bv?(0|[1-9][0-9_]*(\.[0-9_]+)?|[1-9][0-9_]*)\b/ } , {
match : /\b0[0-7][0-7_]*\b/ } , { match : /\b0x[0-9a-fA-F][0-9a-fA-F_]*\b/ } , {
match : /\b0b[0-1][0-1_]*\b/ } ] , relevance : 0
} , c = [ e . BACKSLASH _ESCAPE , i , o ] , d = [ /!/ , /\// , /\|/ , /\?/ , /'/ , /"/ , /#/ ] , g = ( e , a , i = "\\1" ) => {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
const r = "\\1" === i ? i : n . concat ( i , a )
; return n . concat ( n . concat ( "(?:" , e , ")" ) , a , /(?:\\.|[^\\\/])*?/ , r , /(?:\\.|[^\\\/])*?/ , i , t )
2026-06-11 22:16:29 +02:00
} , u = ( e , a , i ) => n . concat ( n . concat ( "(?:" , e , ")" ) , a , /(?:\\.|[^\\\/])*?/ , i , t ) , b = [ o , e . HASH _COMMENT _MODE , e . COMMENT ( /^=\w/ , /=cut/ , {
endsWithParent : ! 0 } ) , r , { className : "string" , contains : c , variants : [ {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : "q[qwxr]?\\s*\\(" , end : "\\)" , relevance : 5 } , { begin : "q[qwxr]?\\s*\\[" ,
end : "\\]" , relevance : 5 } , { begin : "q[qwxr]?\\s*\\{" , end : "\\}" , relevance : 5 } , {
begin : "q[qwxr]?\\s*\\|" , end : "\\|" , relevance : 5 } , { begin : "q[qwxr]?\\s*<" , end : ">" ,
relevance : 5 } , { begin : "qw\\s+q" , end : "q" , relevance : 5 } , { begin : "'" , end : "'" ,
contains : [ e . BACKSLASH _ESCAPE ] } , { begin : '"' , end : '"' } , { begin : "`" , end : "`" ,
contains : [ e . BACKSLASH _ESCAPE ] } , { begin : /\{\w+\}/ , relevance : 0 } , {
2026-06-11 22:16:29 +02:00
begin : "-?\\w+\\s*=>" , relevance : 0 } ] } , l , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : "(\\/\\/|" + e . RE _STARTERS _RE + "|\\b(split|return|print|reverse|grep)\\b)\\s*" ,
keywords : "split return print reverse grep" , relevance : 0 ,
contains : [ e . HASH _COMMENT _MODE , { className : "regexp" , variants : [ {
2026-06-11 22:16:29 +02:00
begin : g ( "s|tr|y" , n . either ( ... d , { capture : ! 0 } ) ) } , { begin : g ( "s|tr|y" , "\\(" , "\\)" ) } , {
begin : g ( "s|tr|y" , "\\[" , "\\]" ) } , { begin : g ( "s|tr|y" , "\\{" , "\\}" ) } ] , relevance : 2 } , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
className : "regexp" , variants : [ { begin : /(m|qr)\/\// , relevance : 0 } , {
2026-06-11 22:16:29 +02:00
begin : u ( "(?:m|qr)?" , /\// , /\// ) } , { begin : u ( "m|qr" , n . either ( ... d , { capture : ! 0
} ) , /\1/ ) } , { begin : u ( "m|qr" , /\(/ , /\)/ ) } , { begin : u ( "m|qr" , /\[/ , /\]/ ) } , {
begin : u ( "m|qr" , /\{/ , /\}/ ) } ] } ] } , { className : "function" , beginKeywords : "sub method" ,
end : "(\\s*\\(.*?\\))?[;{]" , excludeEnd : ! 0 , relevance : 5 , contains : [ e . TITLE _MODE , s ]
} , { className : "class" , beginKeywords : "class" , end : "[;{]" , excludeEnd : ! 0 , relevance : 5 ,
contains : [ e . TITLE _MODE , s , l ] } , { begin : "-\\w\\b" , relevance : 0 } , { begin : "^__DATA__$" ,
end : "^__END__$" , subLanguage : "mojolicious" , contains : [ { begin : "^@@.*" , end : "$" ,
className : "comment" } ] } ] ; return i . contains = b , r . contains = b , { name : "Perl" ,
aliases : [ "pl" , "pm" ] , keywords : a , contains : b } } , grmr _php : e => {
const n = e . regex , t = /(?![A-Za-z0-9])(?![$])/ , a = n . concat ( /[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/ , t ) , i = n . concat ( /(\\?[A-Z][a-z0-9_\x7f-\xff]+|\\?[A-Z]+(?=[A-Z][a-z0-9_\x7f-\xff])){1,}/ , t ) , r = n . concat ( /[A-Z]+/ , t ) , s = {
scope : "variable" , match : "\\$+" + a } , o = { scope : "subst" , variants : [ { begin : /\$\w+/ } , {
begin : /\{\$/ , end : /\}/ } ] } , l = e . inherit ( e . APOS _STRING _MODE , { illegal : null
} ) , c = "[ \t\n]" , d = { scope : "string" , variants : [ e . inherit ( e . QUOTE _STRING _MODE , {
illegal : null , contains : e . QUOTE _STRING _MODE . contains . concat ( o ) } ) , l , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : /<<<[ \t]*(?:(\w+)|"(\w+)")\n/ , end : /[ \t]*(\w+)\b/ ,
2026-06-11 22:16:29 +02:00
contains : e . QUOTE _STRING _MODE . contains . concat ( o ) , "on:begin" : ( e , n ) => {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
n . data . _beginMatch = e [ 1 ] || e [ 2 ] } , "on:end" : ( e , n ) => {
n . data . _beginMatch !== e [ 1 ] && n . ignoreMatch ( ) } } , e . END _SAME _AS _BEGIN ( {
2026-06-11 22:16:29 +02:00
begin : /<<<[ \t]*'(\w+)'\n/ , end : /[ \t]*(\w+)\b/ } ) ] } , g = { scope : "number" , variants : [ {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : "\\b0[bB][01]+(?:_[01]+)*\\b" } , { begin : "\\b0[oO][0-7]+(?:_[0-7]+)*\\b" } , {
begin : "\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b" } , {
begin : "(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?"
} ] , relevance : 0
2026-06-11 22:16:29 +02:00
} , u = [ "false" , "null" , "true" ] , b = [ "__CLASS__" , "__DIR__" , "__FILE__" , "__FUNCTION__" , "__COMPILER_HALT_OFFSET__" , "__LINE__" , "__METHOD__" , "__NAMESPACE__" , "__TRAIT__" , "die" , "echo" , "exit" , "include" , "include_once" , "print" , "require" , "require_once" , "array" , "abstract" , "and" , "as" , "binary" , "bool" , "boolean" , "break" , "callable" , "case" , "catch" , "class" , "clone" , "const" , "continue" , "declare" , "default" , "do" , "double" , "else" , "elseif" , "empty" , "enddeclare" , "endfor" , "endforeach" , "endif" , "endswitch" , "endwhile" , "enum" , "eval" , "extends" , "final" , "finally" , "float" , "for" , "foreach" , "from" , "global" , "goto" , "if" , "implements" , "instanceof" , "insteadof" , "int" , "integer" , "interface" , "isset" , "iterable" , "list" , "match|0" , "mixed" , "new" , "never" , "object" , "or" , "private" , "protected" , "public" , "readonly" , "real" , "return" , "string" , "switch" , "throw" , "trait" , "try" , "unset" , "use" , "var" , "void" , "while" , "xor" , "yield" ] , m = [ "Error|0" , "AppendIterator" , "ArgumentCountError" , "ArithmeticError" , "ArrayIterator" , "ArrayObject" , "AssertionError" , "BadFunctionCallException" , "BadMethodCallException" , "CachingIterator" , "CallbackFilterIterator" , "CompileError" , "Countable" , "DirectoryIterator" , "DivisionByZeroError" , "DomainException" , "EmptyIterator" , "ErrorException" , "Exception" , "FilesystemIterator" , "FilterIterator" , "GlobIterator" , "InfiniteIterator" , "InvalidArgumentException" , "IteratorIterator" , "LengthException" , "LimitIterator" , "LogicException" , "MultipleIterator" , "NoRewindIterator" , "OutOfBoundsException" , "OutOfRangeException" , "OuterIterator" , "OverflowException" , "ParentIterator" , "ParseError" , "RangeException" , "RecursiveArrayIterator" , "RecursiveCachingIterator" , "RecursiveCallbackFilterIterator" , "RecursiveDirectoryIterator" , "RecursiveFilterIterator" , "RecursiveIterator" , "RecursiveIteratorIterator" , "RecursiveRegexIterator" , "RecursiveTreeIterator" , "RegexIterator" , "RuntimeException" , "SeekableIterator" , "SplDoublyLinkedList" , "SplFileInfo" , "SplFileObject" , "SplFixedArray" , "SplHeap" , "SplMaxHeap" , "SplMinHeap" , "SplObjectStorage" , "SplObserver" , "SplPriorityQueue" , "SplQueue" , "SplStack" , "SplSubject" , "SplTempFileObject" , "TypeError" , "UnderflowException" , "UnexpectedValueException" , "UnhandledMatchError" , "ArrayAccess" , "BackedEnum" , "Closure" , "Fiber" , "Generator" , "Iterator" , "IteratorAggregate" , "Serializable" , "Stringable" , "Throwable" , "Traversable" , "UnitEnum" , "WeakReference" , "WeakMap" , "Directory" , "__PHP_Incomplete_Class" , "parent" , "php_user_filter" , "self" , "static" , "stdClass" ] , p = {
keyword : b , literal : ( e => { const n = [ ] ; return e . forEach ( ( e => {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
n . push ( e ) , e . toLowerCase ( ) === e ? n . push ( e . toUpperCase ( ) ) : n . push ( e . toLowerCase ( ) )
2026-06-11 22:16:29 +02:00
} ) ) , n } ) ( u ) , built _in : m } , _ = e => e . map ( ( e => e . replace ( /\|\d+$/ , "" ) ) ) , h = { variants : [ {
match : [ /new/ , n . concat ( c , "+" ) , n . concat ( "(?!" , _ ( m ) . join ( "\\b|" ) , "\\b)" ) , i ] , scope : {
1 : "keyword" , 4 : "title.class" } } ] } , f = n . concat ( a , "\\b(?!\\()" ) , E = { variants : [ {
match : [ n . concat ( /::/ , n . lookahead ( /(?!class\b)/ ) ) , f ] , scope : { 2 : "variable.constant"
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} } , { match : [ /::/ , /class/ ] , scope : { 2 : "variable.language" } } , {
2026-06-11 22:16:29 +02:00
match : [ i , n . concat ( /::/ , n . lookahead ( /(?!class\b)/ ) ) , f ] , scope : { 1 : "title.class" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
3 : "variable.constant" } } , { match : [ i , n . concat ( "::" , n . lookahead ( /(?!class\b)/ ) ) ] ,
scope : { 1 : "title.class" } } , { match : [ i , /::/ , /class/ ] , scope : { 1 : "title.class" ,
2026-06-11 22:16:29 +02:00
3 : "variable.language" } } ] } , y = { scope : "attr" ,
match : n . concat ( a , n . lookahead ( ":" ) , n . lookahead ( /(?!::)/ ) ) } , w = { relevance : 0 ,
begin : /\(/ , end : /\)/ , keywords : p , contains : [ y , s , E , e . C _BLOCK _COMMENT _MODE , d , g , h ]
} , v = { relevance : 0 ,
match : [ /\b/ , n . concat ( "(?!fn\\b|function\\b|" , _ ( b ) . join ( "\\b|" ) , "|" , _ ( m ) . join ( "\\b|" ) , "\\b)" ) , a , n . concat ( c , "*" ) , n . lookahead ( /(?=\()/ ) ] ,
scope : { 3 : "title.function.invoke" } , contains : [ w ] } ; w . contains . push ( v )
; const N = [ y , E , e . C _BLOCK _COMMENT _MODE , d , g , h ] , k = {
begin : n . concat ( /#\[\s*\\?/ , n . either ( i , r ) ) , beginScope : "meta" , end : /]/ ,
endScope : "meta" , keywords : { literal : u , keyword : [ "new" , "array" ] } , contains : [ {
begin : /\[/ , end : /]/ , keywords : { literal : u , keyword : [ "new" , "array" ] } ,
contains : [ "self" , ... N ] } , ... N , { scope : "meta" , variants : [ { match : i } , { match : r } ] } ] }
; return { case _insensitive : ! 1 , keywords : p ,
contains : [ k , e . HASH _COMMENT _MODE , e . COMMENT ( "//" , "$" ) , e . COMMENT ( "/\\*" , "\\*/" , {
contains : [ { scope : "doctag" , match : "@[A-Za-z]+" } ] } ) , { match : /__halt_compiler\(\);/ ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
keywords : "__halt_compiler" , starts : { scope : "comment" , end : e . MATCH _NOTHING _RE ,
contains : [ { match : /\?>/ , scope : "meta" , endsParent : ! 0 } ] } } , { scope : "meta" , variants : [ {
begin : /<\?php/ , relevance : 10 } , { begin : /<\?=/ } , { begin : /<\?/ , relevance : . 1 } , {
2026-06-11 22:16:29 +02:00
begin : /\?>/ } ] } , { scope : "variable.language" , match : /\$this\b/ } , s , v , E , {
match : [ /const/ , /\s/ , a ] , scope : { 1 : "keyword" , 3 : "variable.constant" } } , h , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
scope : "function" , relevance : 0 , beginKeywords : "fn function" , end : /[;{]/ ,
excludeEnd : ! 0 , illegal : "[$%\\[]" , contains : [ { beginKeywords : "use"
} , e . UNDERSCORE _TITLE _MODE , { begin : "=>" , endsParent : ! 0 } , { scope : "params" ,
2026-06-11 22:16:29 +02:00
begin : "\\(" , end : "\\)" , excludeBegin : ! 0 , excludeEnd : ! 0 , keywords : p ,
contains : [ "self" , k , s , E , e . C _BLOCK _COMMENT _MODE , d , g ] } ] } , { scope : "class" , variants : [ {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
beginKeywords : "enum" , illegal : /[($"]/ } , { beginKeywords : "class interface trait" ,
illegal : /[:($"]/ } ] , relevance : 0 , end : /\{/ , excludeEnd : ! 0 , contains : [ {
beginKeywords : "extends implements" } , e . UNDERSCORE _TITLE _MODE ] } , {
beginKeywords : "namespace" , relevance : 0 , end : ";" , illegal : /[.']/ ,
contains : [ e . inherit ( e . UNDERSCORE _TITLE _MODE , { scope : "title.class" } ) ] } , {
beginKeywords : "use" , relevance : 0 , end : ";" , contains : [ {
2026-06-11 22:16:29 +02:00
match : /\b(as|const|function)\b/ , scope : "keyword" } , e . UNDERSCORE _TITLE _MODE ] } , d , g ] }
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} , grmr _php _template : e => ( { name : "PHP template" , subLanguage : "xml" , contains : [ {
begin : /<\?(php|=)?/ , end : /\?>/ , subLanguage : "php" , contains : [ { begin : "/\\*" ,
end : "\\*/" , skip : ! 0 } , { begin : 'b"' , end : '"' , skip : ! 0 } , { begin : "b'" , end : "'" , skip : ! 0
} , e . inherit ( e . APOS _STRING _MODE , { illegal : null , className : null , contains : null ,
skip : ! 0 } ) , e . inherit ( e . QUOTE _STRING _MODE , { illegal : null , className : null ,
contains : null , skip : ! 0 } ) ] } ] } ) , grmr _plaintext : e => ( { name : "Plain text" ,
aliases : [ "text" , "txt" ] , disableAutodetect : ! 0 } ) , grmr _python : e => {
const n = e . regex , t = /[\p{XID_Start}_]\p{XID_Continue}*/u , a = [ "and" , "as" , "assert" , "async" , "await" , "break" , "case" , "class" , "continue" , "def" , "del" , "elif" , "else" , "except" , "finally" , "for" , "from" , "global" , "if" , "import" , "in" , "is" , "lambda" , "match" , "nonlocal|10" , "not" , "or" , "pass" , "raise" , "return" , "try" , "while" , "with" , "yield" ] , i = {
$pattern : /[A-Za-z]\w+|__\w+__/ , keyword : a ,
built _in : [ "__import__" , "abs" , "all" , "any" , "ascii" , "bin" , "bool" , "breakpoint" , "bytearray" , "bytes" , "callable" , "chr" , "classmethod" , "compile" , "complex" , "delattr" , "dict" , "dir" , "divmod" , "enumerate" , "eval" , "exec" , "filter" , "float" , "format" , "frozenset" , "getattr" , "globals" , "hasattr" , "hash" , "help" , "hex" , "id" , "input" , "int" , "isinstance" , "issubclass" , "iter" , "len" , "list" , "locals" , "map" , "max" , "memoryview" , "min" , "next" , "object" , "oct" , "open" , "ord" , "pow" , "print" , "property" , "range" , "repr" , "reversed" , "round" , "set" , "setattr" , "slice" , "sorted" , "staticmethod" , "str" , "sum" , "super" , "tuple" , "type" , "vars" , "zip" ] ,
literal : [ "__debug__" , "Ellipsis" , "False" , "None" , "NotImplemented" , "True" ] ,
type : [ "Any" , "Callable" , "Coroutine" , "Dict" , "List" , "Literal" , "Generic" , "Optional" , "Sequence" , "Set" , "Tuple" , "Type" , "Union" ]
} , r = { className : "meta" , begin : /^(>>>|\.\.\.) / } , s = { className : "subst" , begin : /\{/ ,
end : /\}/ , keywords : i , illegal : /#/ } , o = { begin : /\{\{/ , relevance : 0 } , l = {
className : "string" , contains : [ e . BACKSLASH _ESCAPE ] , variants : [ {
begin : /([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/ , end : /'''/ ,
contains : [ e . BACKSLASH _ESCAPE , r ] , relevance : 10 } , {
begin : /([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/ , end : /"""/ ,
contains : [ e . BACKSLASH _ESCAPE , r ] , relevance : 10 } , {
begin : /([fF][rR]|[rR][fF]|[fF])'''/ , end : /'''/ ,
contains : [ e . BACKSLASH _ESCAPE , r , o , s ] } , { begin : /([fF][rR]|[rR][fF]|[fF])"""/ ,
end : /"""/ , contains : [ e . BACKSLASH _ESCAPE , r , o , s ] } , { begin : /([uU]|[rR])'/ , end : /'/ ,
relevance : 10 } , { begin : /([uU]|[rR])"/ , end : /"/ , relevance : 10 } , {
begin : /([bB]|[bB][rR]|[rR][bB])'/ , end : /'/ } , { begin : /([bB]|[bB][rR]|[rR][bB])"/ ,
end : /"/ } , { begin : /([fF][rR]|[rR][fF]|[fF])'/ , end : /'/ ,
contains : [ e . BACKSLASH _ESCAPE , o , s ] } , { begin : /([fF][rR]|[rR][fF]|[fF])"/ , end : /"/ ,
contains : [ e . BACKSLASH _ESCAPE , o , s ] } , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ]
} , c = "[0-9](_?[0-9])*" , d = ` ( \\ b( ${ c } ))? \\ .( ${ c } )| \\ b( ${ c } ) \\ . ` , g = "\\b|" + a . join ( "|" ) , u = {
className : "number" , relevance : 0 , variants : [ {
begin : ` ( \\ b( ${ c } )|( ${ d } ))[eE][+-]?( ${ c } )[jJ]?(?= ${ g } ) ` } , { begin : ` ( ${ d } )[jJ]? ` } , {
begin : ` \\ b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?= ${ g } ) ` } , {
begin : ` \\ b0[bB](_?[01])+[lL]?(?= ${ g } ) ` } , { begin : ` \\ b0[oO](_?[0-7])+[lL]?(?= ${ g } ) `
} , { begin : ` \\ b0[xX](_?[0-9a-fA-F])+[lL]?(?= ${ g } ) ` } , { begin : ` \\ b( ${ c } )[jJ](?= ${ g } ) `
} ] } , b = { className : "comment" , begin : n . lookahead ( /# type:/ ) , end : /$/ , keywords : i ,
contains : [ { begin : /# type:/ } , { begin : /#/ , end : /\b\B/ , endsWithParent : ! 0 } ] } , m = {
className : "params" , variants : [ { className : "" , begin : /\(\s*\)/ , skip : ! 0 } , { begin : /\(/ ,
end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , keywords : i ,
contains : [ "self" , r , u , l , e . HASH _COMMENT _MODE ] } ] } ; return s . contains = [ l , u , r ] , {
name : "Python" , aliases : [ "py" , "gyp" , "ipython" ] , unicodeRegex : ! 0 , keywords : i ,
2026-06-11 22:16:29 +02:00
illegal : /(<\/|\?)|=>/ , contains : [ r , u , { scope : "variable.language" , match : /\bself\b/
} , { beginKeywords : "if" , relevance : 0 } , { match : /\bor\b/ , scope : "keyword"
} , l , b , e . HASH _COMMENT _MODE , { match : [ /\bdef/ , /\s+/ , t ] , scope : { 1 : "keyword" ,
3 : "title.function" } , contains : [ m ] } , { variants : [ {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
match : [ /\bclass/ , /\s+/ , t , /\s*/ , /\(\s*/ , t , /\s*\)/ ] } , { match : [ /\bclass/ , /\s+/ , t ] } ] ,
scope : { 1 : "keyword" , 3 : "title.class" , 6 : "title.class.inherited" } } , {
className : "meta" , begin : /^[\t ]*@/ , end : /(?=#)|$/ , contains : [ u , m , l ] } ] } } ,
grmr _python _repl : e => ( { aliases : [ "pycon" ] , contains : [ { className : "meta.prompt" ,
starts : { end : / |$/ , starts : { end : "$" , subLanguage : "python" } } , variants : [ {
begin : /^>>>(?=[ ]|$)/ } , { begin : /^\.\.\.(?=[ ]|$)/ } ] } ] } ) , grmr _r : e => {
const n = e . regex , t = /(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/ , a = n . either ( /0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/ , /0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/ , /(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/ ) , i = /[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/ , r = n . either ( /[()]/ , /[{}]/ , /\[\[/ , /[[\]]/ , /\\/ , /,/ )
; return { name : "R" , keywords : { $pattern : t ,
keyword : "function if in break next repeat else for while" ,
literal : "NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10" ,
built _in : "LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"
} , contains : [ e . COMMENT ( /#'/ , /$/ , { contains : [ { scope : "doctag" , match : /@examples/ ,
starts : { end : n . lookahead ( n . either ( /\n^#'\s*(?=@[a-zA-Z]+)/ , /\n^(?!#')/ ) ) ,
endsParent : ! 0 } } , { scope : "doctag" , begin : "@param" , end : /$/ , contains : [ {
scope : "variable" , variants : [ { match : t } , { match : /`(?:\\.|[^`\\])+`/ } ] , endsParent : ! 0
} ] } , { scope : "doctag" , match : /@[a-zA-Z]+/ } , { scope : "keyword" , match : /\\[a-zA-Z]+/ } ]
} ) , e . HASH _COMMENT _MODE , { scope : "string" , contains : [ e . BACKSLASH _ESCAPE ] ,
variants : [ e . END _SAME _AS _BEGIN ( { begin : /[rR]"(-*)\(/ , end : /\)(-*)"/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]"(-*)\{/ , end : /\}(-*)"/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]"(-*)\[/ , end : /\](-*)"/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]'(-*)\(/ , end : /\)(-*)'/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]'(-*)\{/ , end : /\}(-*)'/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]'(-*)\[/ , end : /\](-*)'/ } ) , { begin : '"' , end : '"' ,
relevance : 0 } , { begin : "'" , end : "'" , relevance : 0 } ] } , { relevance : 0 , variants : [ { scope : {
1 : "operator" , 2 : "number" } , match : [ i , a ] } , { scope : { 1 : "operator" , 2 : "number" } ,
match : [ /%[^%]*%/ , a ] } , { scope : { 1 : "punctuation" , 2 : "number" } , match : [ r , a ] } , { scope : {
2 : "number" } , match : [ /[^a-zA-Z0-9._]|^/ , a ] } ] } , { scope : { 3 : "operator" } ,
match : [ t , /\s+/ , /<-/ , /\s+/ ] } , { scope : "operator" , relevance : 0 , variants : [ { match : i } , {
match : /%[^%]*%/ } ] } , { scope : "punctuation" , relevance : 0 , match : r } , { begin : "`" , end : "`" ,
contains : [ { begin : /\\./ } ] } ] } } , grmr _ruby : e => {
const n = e . regex , t = "([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)" , a = n . either ( /\b([A-Z]+[a-z0-9]+)+/ , /\b([A-Z]+[a-z0-9]+)+[A-Z]+/ ) , i = n . concat ( a , /(::\w+)*/ ) , r = {
"variable.constant" : [ "__FILE__" , "__LINE__" , "__ENCODING__" ] ,
"variable.language" : [ "self" , "super" ] ,
keyword : [ "alias" , "and" , "begin" , "BEGIN" , "break" , "case" , "class" , "defined" , "do" , "else" , "elsif" , "end" , "END" , "ensure" , "for" , "if" , "in" , "module" , "next" , "not" , "or" , "redo" , "require" , "rescue" , "retry" , "return" , "then" , "undef" , "unless" , "until" , "when" , "while" , "yield" , "include" , "extend" , "prepend" , "public" , "private" , "protected" , "raise" , "throw" ] ,
built _in : [ "proc" , "lambda" , "attr_accessor" , "attr_reader" , "attr_writer" , "define_method" , "private_constant" , "module_function" ] ,
literal : [ "true" , "false" , "nil" ] } , s = { className : "doctag" , begin : "@[A-Za-z]+" } , o = {
begin : "#<" , end : ">" } , l = [ e . COMMENT ( "#" , "$" , { contains : [ s ]
} ) , e . COMMENT ( "^=begin" , "^=end" , { contains : [ s ] , relevance : 10
} ) , e . COMMENT ( "^__END__" , e . MATCH _NOTHING _RE ) ] , c = { className : "subst" , begin : /#\{/ ,
end : /\}/ , keywords : r } , d = { className : "string" , contains : [ e . BACKSLASH _ESCAPE , c ] ,
variants : [ { begin : /'/ , end : /'/ } , { begin : /"/ , end : /"/ } , { begin : /`/ , end : /`/ } , {
begin : /%[qQwWx]?\(/ , end : /\)/ } , { begin : /%[qQwWx]?\[/ , end : /\]/ } , {
begin : /%[qQwWx]?\{/ , end : /\}/ } , { begin : /%[qQwWx]?</ , end : />/ } , { begin : /%[qQwWx]?\// ,
end : /\// } , { begin : /%[qQwWx]?%/ , end : /%/ } , { begin : /%[qQwWx]?-/ , end : /-/ } , {
begin : /%[qQwWx]?\|/ , end : /\|/ } , { begin : /\B\?(\\\d{1,3})/ } , {
begin : /\B\?(\\x[A-Fa-f0-9]{1,2})/ } , { begin : /\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/ } , {
begin : /\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/ } , {
begin : /\B\?\\(c|C-)[\x20-\x7e]/ } , { begin : /\B\?\\?\S/ } , {
begin : n . concat ( /<<[-~]?'?/ , n . lookahead ( /(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/ ) ) ,
contains : [ e . END _SAME _AS _BEGIN ( { begin : /(\w+)/ , end : /(\w+)/ ,
contains : [ e . BACKSLASH _ESCAPE , c ] } ) ] } ] } , g = "[0-9](_?[0-9])*" , u = { className : "number" ,
relevance : 0 , variants : [ {
begin : ` \\ b([1-9](_?[0-9])*|0)( \\ .( ${ g } ))?([eE][+-]?( ${ g } )|r)?i? \\ b ` } , {
begin : "\\b0[dD][0-9](_?[0-9])*r?i?\\b" } , { begin : "\\b0[bB][0-1](_?[0-1])*r?i?\\b"
} , { begin : "\\b0[oO][0-7](_?[0-7])*r?i?\\b" } , {
begin : "\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b" } , {
begin : "\\b0(_?[0-7])+r?i?\\b" } ] } , b = { variants : [ { match : /\(\)/ } , {
className : "params" , begin : /\(/ , end : /(?=\))/ , excludeBegin : ! 0 , endsParent : ! 0 ,
keywords : r } ] } , m = [ d , { variants : [ { match : [ /class\s+/ , i , /\s+<\s+/ , i ] } , {
match : [ /\b(class|module)\s+/ , i ] } ] , scope : { 2 : "title.class" ,
4 : "title.class.inherited" } , keywords : r } , { match : [ /(include|extend)\s+/ , i ] , scope : {
2 : "title.class" } , keywords : r } , { relevance : 0 , match : [ i , /\.new[. (]/ ] , scope : {
1 : "title.class" } } , { relevance : 0 , match : /\b[A-Z][A-Z_0-9]+\b/ ,
className : "variable.constant" } , { relevance : 0 , match : a , scope : "title.class" } , {
match : [ /def/ , /\s+/ , t ] , scope : { 1 : "keyword" , 3 : "title.function" } , contains : [ b ] } , {
begin : e . IDENT _RE + "::" } , { className : "symbol" ,
begin : e . UNDERSCORE _IDENT _RE + "(!|\\?)?:" , relevance : 0 } , { className : "symbol" ,
begin : ":(?!\\s)" , contains : [ d , { begin : t } ] , relevance : 0 } , u , { className : "variable" ,
begin : "(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])" } , {
2026-06-11 22:16:29 +02:00
className : "params" , begin : /\|(?!=)/ , end : /\|/ , excludeBegin : ! 0 , excludeEnd : ! 0 ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
relevance : 0 , keywords : r } , { begin : "(" + e . RE _STARTERS _RE + "|unless)\\s*" ,
keywords : "unless" , contains : [ { className : "regexp" , contains : [ e . BACKSLASH _ESCAPE , c ] ,
illegal : /\n/ , variants : [ { begin : "/" , end : "/[a-z]*" } , { begin : /%r\{/ , end : /\}[a-z]*/ } , {
begin : "%r\\(" , end : "\\)[a-z]*" } , { begin : "%r!" , end : "![a-z]*" } , { begin : "%r\\[" ,
end : "\\][a-z]*" } ] } ] . concat ( o , l ) , relevance : 0 } ] . concat ( o , l )
; c . contains = m , b . contains = m ; const p = [ { begin : /^\s*=>/ , starts : { end : "$" , contains : m }
} , { className : "meta.prompt" ,
begin : "^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+[>*]|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])" ,
starts : { end : "$" , keywords : r , contains : m } } ] ; return l . unshift ( o ) , { name : "Ruby" ,
aliases : [ "rb" , "gemspec" , "podspec" , "thor" , "irb" ] , keywords : r , illegal : /\/\*/ ,
contains : [ e . SHEBANG ( { binary : "ruby" } ) ] . concat ( p ) . concat ( l ) . concat ( m ) } } ,
2026-06-11 22:16:29 +02:00
grmr _rust : e => {
const n = e . regex , t = /(r#)?/ , a = n . concat ( t , e . UNDERSCORE _IDENT _RE ) , i = n . concat ( t , e . IDENT _RE ) , r = {
className : "title.function.invoke" , relevance : 0 ,
begin : n . concat ( /\b/ , /(?!let|for|while|if|else|match\b)/ , i , n . lookahead ( /\s*\(/ ) )
} , s = "([ui](8|16|32|64|128|size)|f(32|64))?" , o = [ "drop " , "Copy" , "Send" , "Sized" , "Sync" , "Drop" , "Fn" , "FnMut" , "FnOnce" , "ToOwned" , "Clone" , "Debug" , "PartialEq" , "PartialOrd" , "Eq" , "Ord" , "AsRef" , "AsMut" , "Into" , "From" , "Default" , "Iterator" , "Extend" , "IntoIterator" , "DoubleEndedIterator" , "ExactSizeIterator" , "SliceConcatExt" , "ToString" , "assert!" , "assert_eq!" , "bitflags!" , "bytes!" , "cfg!" , "col!" , "concat!" , "concat_idents!" , "debug_assert!" , "debug_assert_eq!" , "env!" , "eprintln!" , "panic!" , "file!" , "format!" , "format_args!" , "include_bytes!" , "include_str!" , "line!" , "local_data_key!" , "module_path!" , "option_env!" , "print!" , "println!" , "select!" , "stringify!" , "try!" , "unimplemented!" , "unreachable!" , "vec!" , "write!" , "writeln!" , "macro_rules!" , "assert_ne!" , "debug_assert_ne!" ] , l = [ "i8" , "i16" , "i32" , "i64" , "i128" , "isize" , "u8" , "u16" , "u32" , "u64" , "u128" , "usize" , "f32" , "f64" , "str" , "char" , "bool" , "Box" , "Option" , "Result" , "String" , "Vec" ]
; return { name : "Rust" , aliases : [ "rs" ] , keywords : { $pattern : e . IDENT _RE + "!?" , type : l ,
keyword : [ "abstract" , "as" , "async" , "await" , "become" , "box" , "break" , "const" , "continue" , "crate" , "do" , "dyn" , "else" , "enum" , "extern" , "false" , "final" , "fn" , "for" , "if" , "impl" , "in" , "let" , "loop" , "macro" , "match" , "mod" , "move" , "mut" , "override" , "priv" , "pub" , "ref" , "return" , "self" , "Self" , "static" , "struct" , "super" , "trait" , "true" , "try" , "type" , "typeof" , "union" , "unsafe" , "unsized" , "use" , "virtual" , "where" , "while" , "yield" ] ,
literal : [ "true" , "false" , "Some" , "None" , "Ok" , "Err" ] , built _in : o } , illegal : "</" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
contains : [ e . C _LINE _COMMENT _MODE , e . COMMENT ( "/\\*" , "\\*/" , { contains : [ "self" ]
} ) , e . inherit ( e . QUOTE _STRING _MODE , { begin : /b?"/ , illegal : null } ) , {
2026-06-11 22:16:29 +02:00
className : "symbol" , begin : /'[a-zA-Z_][a-zA-Z0-9_]*(?!')/ } , { scope : "string" ,
variants : [ { begin : /b?r(#*)"(.|\n)*?"\1(?!#)/ } , { begin : /b?'/ , end : /'/ , contains : [ {
scope : "char.escape" , match : /\\('|\w|x\w{2}|u\w{4}|U\w{8})/ } ] } ] } , {
className : "number" , variants : [ { begin : "\\b0b([01_]+)" + s } , { begin : "\\b0o([0-7_]+)" + s
} , { begin : "\\b0x([A-Fa-f0-9_]+)" + s } , {
begin : "\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)" + s } ] , relevance : 0 } , {
begin : [ /fn/ , /\s+/ , a ] , className : { 1 : "keyword" , 3 : "title.function" } } , {
className : "meta" , begin : "#!?\\[" , end : "\\]" , contains : [ { className : "string" ,
begin : /"/ , end : /"/ , contains : [ e . BACKSLASH _ESCAPE ] } ] } , {
begin : [ /let/ , /\s+/ , /(?:mut\s+)?/ , a ] , className : { 1 : "keyword" , 3 : "keyword" ,
4 : "variable" } } , { begin : [ /for/ , /\s+/ , a , /\s+/ , /in/ ] , className : { 1 : "keyword" ,
3 : "variable" , 5 : "keyword" } } , { begin : [ /type/ , /\s+/ , a ] , className : { 1 : "keyword" ,
3 : "title.class" } } , { begin : [ /(?:trait|enum|struct|union|impl|for)/ , /\s+/ , a ] ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
className : { 1 : "keyword" , 3 : "title.class" } } , { begin : e . IDENT _RE + "::" , keywords : {
2026-06-11 22:16:29 +02:00
keyword : "Self" , built _in : o , type : l } } , { className : "punctuation" , begin : "->" } , r ] } } ,
grmr _scss : e => { const n = te ( e ) , t = se , a = re , i = "@[a-z-]+" , r = { className : "variable" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : "(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b" , relevance : 0 } ; return { name : "SCSS" ,
case _insensitive : ! 0 , illegal : "[=/|']" ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , n . CSS _NUMBER _MODE , {
className : "selector-id" , begin : "#[A-Za-z0-9_-]+" , relevance : 0 } , {
className : "selector-class" , begin : "\\.[A-Za-z0-9_-]+" , relevance : 0
} , n . ATTRIBUTE _SELECTOR _MODE , { className : "selector-tag" ,
2026-06-11 22:16:29 +02:00
begin : "\\b(" + ae . join ( "|" ) + ")\\b" , relevance : 0 } , { className : "selector-pseudo" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : ":(" + a . join ( "|" ) + ")" } , { className : "selector-pseudo" ,
begin : ":(:)?(" + t . join ( "|" ) + ")" } , r , { begin : /\(/ , end : /\)/ ,
contains : [ n . CSS _NUMBER _MODE ] } , n . CSS _VARIABLE , { className : "attribute" ,
2026-06-11 22:16:29 +02:00
begin : "\\b(" + oe . join ( "|" ) + ")\\b" } , {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : "\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"
} , { begin : /:/ , end : /[;}{]/ , relevance : 0 ,
contains : [ n . BLOCK _COMMENT , r , n . HEXCOLOR , n . CSS _NUMBER _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , n . IMPORTANT , n . FUNCTION _DISPATCH ]
} , { begin : "@(page|font-face)" , keywords : { $pattern : i , keyword : "@page @font-face" } } , {
begin : "@" , end : "[{;]" , returnBegin : ! 0 , keywords : { $pattern : /[a-z-]+/ ,
2026-06-11 22:16:29 +02:00
keyword : "and or not only" , attribute : ie . join ( " " ) } , contains : [ { begin : i ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
className : "keyword" } , { begin : /[a-z-]+(?=:)/ , className : "attribute"
} , r , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , n . HEXCOLOR , n . CSS _NUMBER _MODE ]
} , n . FUNCTION _DISPATCH ] } } , grmr _shell : e => ( { name : "Shell Session" ,
aliases : [ "console" , "shellsession" ] , contains : [ { className : "meta.prompt" ,
begin : /^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/ , starts : { end : /[^\\](?=\s*$)/ ,
subLanguage : "bash" } } ] } ) , grmr _sql : e => {
2026-06-11 22:16:29 +02:00
const n = e . regex , t = e . COMMENT ( "--" , "$" ) , a = [ "abs" , "acos" , "array_agg" , "asin" , "atan" , "avg" , "cast" , "ceil" , "ceiling" , "coalesce" , "corr" , "cos" , "cosh" , "count" , "covar_pop" , "covar_samp" , "cume_dist" , "dense_rank" , "deref" , "element" , "exp" , "extract" , "first_value" , "floor" , "json_array" , "json_arrayagg" , "json_exists" , "json_object" , "json_objectagg" , "json_query" , "json_table" , "json_table_primitive" , "json_value" , "lag" , "last_value" , "lead" , "listagg" , "ln" , "log" , "log10" , "lower" , "max" , "min" , "mod" , "nth_value" , "ntile" , "nullif" , "percent_rank" , "percentile_cont" , "percentile_disc" , "position" , "position_regex" , "power" , "rank" , "regr_avgx" , "regr_avgy" , "regr_count" , "regr_intercept" , "regr_r2" , "regr_slope" , "regr_sxx" , "regr_sxy" , "regr_syy" , "row_number" , "sin" , "sinh" , "sqrt" , "stddev_pop" , "stddev_samp" , "substring" , "substring_regex" , "sum" , "tan" , "tanh" , "translate" , "translate_regex" , "treat" , "trim" , "trim_array" , "unnest" , "upper" , "value_of" , "var_pop" , "var_samp" , "width_bucket" ] , i = a , r = [ "abs" , "acos" , "all" , "allocate" , "alter" , "and" , "any" , "are" , "array" , "array_agg" , "array_max_cardinality" , "as" , "asensitive" , "asin" , "asymmetric" , "at" , "atan" , "atomic" , "authorization" , "avg" , "begin" , "begin_frame" , "begin_partition" , "between" , "bigint" , "binary" , "blob" , "boolean" , "both" , "by" , "call" , "called" , "cardinality" , "cascaded" , "case" , "cast" , "ceil" , "ceiling" , "char" , "char_length" , "character" , "character_length" , "check" , "classifier" , "clob" , "close" , "coalesce" , "collate" , "collect" , "column" , "commit" , "condition" , "connect" , "constraint" , "contains" , "convert" , "copy" , "corr" , "corresponding" , "cos" , "cosh" , "count" , "covar_pop" , "covar_samp" , "create" , "cross" , "cube" , "cume_dist" , "current" , "current_catalog" , "current_date" , "current_default_transform_group" , "current_path" , "current_role" , "current_row" , "current_schema" , "current_time" , "current_timestamp" , "current_path" , "current_role" , "current_transform_group_for_type" , "current_user" , "cursor" , "cycle" , "date" , "day" , "deallocate" , "dec" , "decimal" , "decfloat" , "declare" , "default" , "define" , "delete" , "dense_rank" , "deref" , "describe" , "deterministic" , "disconnect" , "distinct" , "double" , "drop" , "dynamic" , "each" , "element" , "else" , "empty" , "end" , "end_frame" , "end_partition" , "end-exec" , "equals" , "escape" , "every" , "except" , "exec" , "execute" , "exists" , "exp" , "external" , "extract" , "false" , "fetch" , "filter" , "first_value" , "float" , "floor" , "for" , "foreign" , "frame_row" , "free" , "from" , "full" , "function" , "fusion" , "get" , "global" , "grant" , "group" , "grouping" , "groups" , "having" , "hold" , "hour" , "identity" , "in" , "indicator" , "initial" , "inner" , "inout" , "insensitive" , "insert" , "int" , "integer" , "intersect" , "intersection" , "interval" , "into" , "is" , "join" , "json_array" , "json_arrayagg" , "json_exists" , "json_object" , "json_objectagg" , "json_query" , "json_table" , "json_table_primitive" , "json_value" , "lag" , "language" , "large" , "last_value" , "lateral" , "lead" , "leading" , "left" , "like" , "like_regex" , "listagg" , "ln" , "local" , "localtime" , "localtimestamp" , "log" , "log10" , "lower" , "match" , "match_number" , "match_recognize" , "matches" , "max" , "member" , "merge" , "method" , "min" , "minute" , "mod" , "modifies" , "module" , "month" , "multiset" , "national" , "natural" , "nchar" , "nclob" , "new" , "no" , "none" , "normalize" , "not" , "nth_value" , "ntile" , "null" , "nullif" , "numeric" , "octet_length" , "occurrences_regex" , "of" , "offset" , "old" , "omit" , "on" , "one" , "only" , "open" , "or" , "order" , "out" , "outer" , "over" , "overlaps" , "overlay" , "parameter" , "partition" , "pattern" , "per" , "percent" , "percent_rank" , "percentile_cont" , "percentile_disc" , "period" , "portion" , "position" , "position_regex" , "power" , "precedes" , "precision" , "prepare" , "primary" , "procedure" , "ptf" , "range" , "rank" , "reads" , "real" , "recursive" , "ref" , "references" , "referencing" , "regr_avgx" , "regr_avgy" , "regr_count" , "regr_intercept" , "regr_r2" , "regr_slope" , "regr_sxx" , "regr_sxy" , "regr_syy" , "release" , "result" , "return" , "returns" , "revoke" , "right" , "rollback" , "rollup" , "row" , "row_number" , "rows" , "running" , "savepoint" , "scope" , "scroll" , "search" , "second" , "seek" , "select" , "sensitive" , "session_user" , "set" , "show" , "similar" , "sin" , "sinh" , "skip" , "smallint" , "some" , "specific" , "specifictype" , "sql" , "sqlexception" , "sqlstate" , "sqlwarning" , "sqrt" , "start" , "static" , "stddev_pop" , "stddev_samp" , "submultiset" , "subset" , " substrin
match : n . concat ( /\b/ , n . either ( ... i ) , /\s*\(/ ) , relevance : 0 , keywords : { built _in : i } }
; function o ( e ) {
return n . concat ( /\b/ , n . either ( ... e . map ( ( e => e . replace ( /\s+/ , "\\s+" ) ) ) ) , /\b/ ) }
const l = { scope : "keyword" ,
match : o ( [ "create table" , "insert into" , "primary key" , "foreign key" , "not null" , "alter table" , "add constraint" , "grouping sets" , "on overflow" , "character set" , "respect nulls" , "ignore nulls" , "nulls first" , "nulls last" , "depth first" , "breadth first" ] ) ,
relevance : 0 } ; return { name : "SQL" , case _insensitive : ! 0 , illegal : /[{}]|<\// , keywords : {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
$pattern : /\b[\w\.]+/ , keyword : ( ( e , { exceptions : n , when : t } = { } ) => { const a = t
; return n = n || [ ] , e . map ( ( e => e . match ( /\|\d+$/ ) || n . includes ( e ) ? e : a ( e ) ? e + "|0" : e ) )
2026-06-11 22:16:29 +02:00
} ) ( r , { when : e => e . length < 3 } ) , literal : [ "true" , "false" , "unknown" ] ,
type : [ "bigint" , "binary" , "blob" , "boolean" , "char" , "character" , "clob" , "date" , "dec" , "decfloat" , "decimal" , "float" , "int" , "integer" , "interval" , "nchar" , "nclob" , "national" , "numeric" , "real" , "row" , "smallint" , "time" , "timestamp" , "varchar" , "varying" , "varbinary" ] ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
built _in : [ "current_catalog" , "current_date" , "current_default_transform_group" , "current_path" , "current_role" , "current_schema" , "current_transform_group_for_type" , "current_user" , "session_user" , "system_time" , "system_user" , "current_time" , "localtime" , "current_timestamp" , "localtimestamp" ]
2026-06-11 22:16:29 +02:00
} , contains : [ { scope : "type" ,
match : o ( [ "double precision" , "large object" , "with timezone" , "without timezone" ] )
} , l , s , { scope : "variable" , match : /@[a-z0-9][a-z0-9_]*/ } , { scope : "string" , variants : [ {
begin : /'/ , end : /'/ , contains : [ { match : /''/ } ] } ] } , { begin : /"/ , end : /"/ , contains : [ {
match : /""/ } ] } , e . C _NUMBER _MODE , e . C _BLOCK _COMMENT _MODE , t , { scope : "operator" ,
match : /[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/ , relevance : 0 } ] } } ,
grmr _swift : e => { const n = { match : /\s+/ , relevance : 0 } , t = e . COMMENT ( "/\\*" , "\\*/" , {
contains : [ "self" ] } ) , a = [ e . C _LINE _COMMENT _MODE , t ] , i = { match : [ /\./ , m ( ... ke , ... xe ) ] ,
className : { 2 : "keyword" } } , r = { match : b ( /\./ , m ( ... Me ) ) , relevance : 0
} , s = Me . filter ( ( e => "string" == typeof e ) ) . concat ( [ "_|0" ] ) , o = { variants : [ {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
className : "keyword" ,
2026-06-11 22:16:29 +02:00
match : m ( ... Me . filter ( ( e => "string" != typeof e ) ) . concat ( Oe ) . map ( Ne ) , ... xe ) } ] } , l = {
$pattern : m ( /\b\w+/ , /#\w+/ ) , keyword : s . concat ( Ce ) , literal : Ae } , c = [ i , r , o ] , g = [ {
match : b ( /\./ , m ( ... Te ) ) , relevance : 0 } , { className : "built_in" ,
match : b ( /\b/ , m ( ... Te ) , /(?=\()/ ) } ] , u = { match : /->/ , relevance : 0 } , p = [ u , {
className : "operator" , relevance : 0 , variants : [ { match : Ie } , { match : ` \\ .( \\ .| ${ De } )+ ` } ]
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
} ] , _ = "([0-9]_*)+" , h = "([0-9a-fA-F]_*)+" , f = { className : "number" , relevance : 0 ,
variants : [ { match : ` \\ b( ${ _ } )( \\ .( ${ _ } ))?([eE][+-]?( ${ _ } ))? \\ b ` } , {
match : ` \\ b0x( ${ h } )( \\ .( ${ h } ))?([pP][+-]?( ${ _ } ))? \\ b ` } , { match : /\b0o([0-7]_*)+\b/
} , { match : /\b0b([01]_*)+\b/ } ] } , E = ( e = "" ) => ( { className : "subst" , variants : [ {
match : b ( /\\/ , e , /[0\\tnr"']/ ) } , { match : b ( /\\/ , e , /u\{[0-9a-fA-F]{1,8}\}/ ) } ]
} ) , y = ( e = "" ) => ( { className : "subst" , match : b ( /\\/ , e , /[\t ]*(?:[\r\n]|\r\n)/ )
2026-06-11 22:16:29 +02:00
} ) , w = ( e = "" ) => ( { className : "subst" , label : "interpol" , begin : b ( /\\/ , e , /\(/ ) , end : /\)/
} ) , v = ( e = "" ) => ( { begin : b ( e , /"""/ ) , end : b ( /"""/ , e ) , contains : [ E ( e ) , y ( e ) , w ( e ) ]
} ) , N = ( e = "" ) => ( { begin : b ( e , /"/ ) , end : b ( /"/ , e ) , contains : [ E ( e ) , w ( e ) ] } ) , k = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
className : "string" ,
2026-06-11 22:16:29 +02:00
variants : [ v ( ) , v ( "#" ) , v ( "##" ) , v ( "###" ) , N ( ) , N ( "#" ) , N ( "##" ) , N ( "###" ) ]
} , x = [ e . BACKSLASH _ESCAPE , { begin : /\[/ , end : /\]/ , relevance : 0 ,
contains : [ e . BACKSLASH _ESCAPE ] } ] , O = { begin : /\/[^\s](?=[^/\n]*\/)/ , end : /\// ,
contains : x } , M = e => { const n = b ( e , /\// ) , t = b ( /\// , e ) ; return { begin : n , end : t ,
contains : [ ... x , { scope : "comment" , begin : ` #(?!.* ${ t } ) ` , end : /$/ } ] } } , A = {
scope : "regexp" , variants : [ M ( "###" ) , M ( "##" ) , M ( "#" ) , O ] } , S = { match : b ( /`/ , $e , /`/ )
} , C = [ S , { className : "variable" , match : /\$\d+/ } , { className : "variable" ,
match : ` \\ $ ${ Be } + ` } ] , T = [ { match : /(@|#(un)?)available/ , scope : "keyword" , starts : {
contains : [ { begin : /\(/ , end : /\)/ , keywords : je , contains : [ ... p , f , k ] } ] } } , {
scope : "keyword" , match : b ( /@/ , m ( ... ze ) , d ( m ( /\(/ , /\s+/ ) ) ) } , { scope : "meta" ,
match : b ( /@/ , $e ) } ] , R = { match : d ( /\b[A-Z]/ ) , relevance : 0 , contains : [ { className : "type" ,
match : b ( /(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/ , Be , "+" )
} , { className : "type" , match : Fe , relevance : 0 } , { match : /[?!]+/ , relevance : 0 } , {
match : /\.\.\./ , relevance : 0 } , { match : b ( /\s+&\s+/ , d ( Fe ) ) , relevance : 0 } ] } , D = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : /</ , end : />/ , keywords : l , contains : [ ... a , ... c , ... T , u , R ] } ; R . contains . push ( D )
; const I = { begin : /\(/ , end : /\)/ , relevance : 0 , keywords : l , contains : [ "self" , {
2026-06-11 22:16:29 +02:00
match : b ( $e , /\s*:/ ) , keywords : "_|0" , relevance : 0
} , ... a , A , ... c , ... g , ... p , f , k , ... C , ... T , R ] } , L = { begin : /</ , end : />/ ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
keywords : "repeat each" , contains : [ ... a , R ] } , B = { begin : /\(/ , end : /\)/ , keywords : l ,
2026-06-11 22:16:29 +02:00
contains : [ { begin : m ( d ( b ( $e , /\s*:/ ) ) , d ( b ( $e , /\s+/ , $e , /\s*:/ ) ) ) , end : /:/ ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
relevance : 0 , contains : [ { className : "keyword" , match : /\b_\b/ } , { className : "params" ,
2026-06-11 22:16:29 +02:00
match : $e } ] } , ... a , ... c , ... p , f , k , ... T , R , I ] , endsParent : ! 0 , illegal : /["']/ } , $ = {
match : [ /(func|macro)/ , /\s+/ , m ( S . match , $e , Ie ) ] , className : { 1 : "keyword" ,
3 : "title.function" } , contains : [ L , B , n ] , illegal : [ /\[/ , /%/ ] } , F = {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
match : [ /\b(?:subscript|init[?!]?)/ , /\s*(?=[<(])/ ] , className : { 1 : "keyword" } ,
2026-06-11 22:16:29 +02:00
contains : [ L , B , n ] , illegal : /\[|%/ } , z = { match : [ /operator/ , /\s+/ , Ie ] , className : {
1 : "keyword" , 3 : "title" } } , j = { begin : [ /precedencegroup/ , /\s+/ , Fe ] , className : {
1 : "keyword" , 3 : "title" } , contains : [ R ] , keywords : [ ... Se , ... Ae ] , end : /}/ } , U = {
begin : [ /(struct|protocol|class|extension|enum|actor)/ , /\s+/ , $e , /\s*/ ] ,
beginScope : { 1 : "keyword" , 3 : "title.class" } , keywords : l , contains : [ L , ... c , { begin : /:/ ,
end : /\{/ , keywords : l , contains : [ { scope : "title.class.inherited" , match : Fe } , ... c ] ,
relevance : 0 } ] } ; for ( const e of k . variants ) {
const n = e . contains . find ( ( e => "interpol" === e . label ) ) ; n . keywords = l
; const t = [ ... c , ... g , ... p , f , k , ... C ] ; n . contains = [ ... t , { begin : /\(/ , end : /\)/ ,
contains : [ "self" , ... t ] } ] } return { name : "Swift" , keywords : l , contains : [ ... a , $ , F , {
match : [ /class\b/ , /\s+/ , /func\b/ , /\s+/ , /\b[A-Za-z_][A-Za-z0-9_]*\b/ ] , scope : {
1 : "keyword" , 3 : "keyword" , 5 : "title.function" } } , { match : [ /class\b/ , /\s+/ , /var\b/ ] ,
scope : { 1 : "keyword" , 3 : "keyword" } } , U , z , j , { beginKeywords : "import" , end : /$/ ,
contains : [ ... a ] , relevance : 0 } , A , ... c , ... g , ... p , f , k , ... C , ... T , R , I ] } } ,
grmr _typescript : e => {
const n = e . regex , t = ve ( e ) , a = me , i = [ "any" , "void" , "number" , "boolean" , "string" , "object" , "never" , "symbol" , "bigint" , "unknown" ] , r = {
begin : [ /namespace/ , /\s+/ , e . IDENT _RE ] , beginScope : { 1 : "keyword" , 3 : "title.class" }
} , s = { beginKeywords : "interface" , end : /\{/ , excludeEnd : ! 0 , keywords : {
keyword : "interface extends" , built _in : i } , contains : [ t . exports . CLASS _REFERENCE ]
} , o = { $pattern : me ,
keyword : pe . concat ( [ "type" , "interface" , "public" , "private" , "protected" , "implements" , "declare" , "abstract" , "readonly" , "enum" , "override" , "satisfies" ] ) ,
literal : _e , built _in : we . concat ( i ) , "variable.language" : ye } , l = { className : "meta" ,
begin : "@" + a } , c = ( e , n , t ) => { const a = e . contains . findIndex ( ( e => e . label === n ) )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; if ( - 1 === a ) throw Error ( "can not find mode to replace" ) ; e . contains . splice ( a , 1 , t ) }
2026-06-11 22:16:29 +02:00
; Object . assign ( t . keywords , o ) , t . exports . PARAMS _CONTAINS . push ( l )
; const d = t . contains . find ( ( e => "attr" === e . scope ) ) , g = Object . assign ( { } , d , {
match : n . concat ( a , n . lookahead ( /\s*\?:/ ) ) } )
; return t . exports . PARAMS _CONTAINS . push ( [ t . exports . CLASS _REFERENCE , d , g ] ) ,
t . contains = t . contains . concat ( [ l , r , s , g ] ) ,
c ( t , "shebang" , e . SHEBANG ( ) ) , c ( t , "use_strict" , { className : "meta" , relevance : 10 ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : /^\s*['"]use strict['"]/
2026-06-11 22:16:29 +02:00
} ) , t . contains . find ( ( e => "func.def" === e . label ) ) . relevance = 0 , Object . assign ( t , {
name : "TypeScript" , aliases : [ "ts" , "tsx" , "mts" , "cts" ] } ) , t } , grmr _vbnet : e => {
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
const n = e . regex , t = /\d{1,2}\/\d{1,2}\/\d{4}/ , a = /\d{4}-\d{1,2}-\d{1,2}/ , i = /(\d|1[012])(:\d+){0,2} *(AM|PM)/ , r = /\d{1,2}(:\d{1,2}){1,2}/ , s = {
className : "literal" , variants : [ { begin : n . concat ( /# */ , n . either ( a , t ) , / *#/ ) } , {
begin : n . concat ( /# */ , r , / *#/ ) } , { begin : n . concat ( /# */ , i , / *#/ ) } , {
begin : n . concat ( /# */ , n . either ( a , t ) , / +/ , n . either ( i , r ) , / *#/ ) } ]
} , o = e . COMMENT ( /'''/ , /$/ , { contains : [ { className : "doctag" , begin : /<\/?/ , end : />/ } ]
} ) , l = e . COMMENT ( null , /$/ , { variants : [ { begin : /'/ } , { begin : /([\t ]|^)REM(?=\s)/ } ] } )
; return { name : "Visual Basic .NET" , aliases : [ "vb" ] , case _insensitive : ! 0 ,
classNameAliases : { label : "symbol" } , keywords : {
keyword : "addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield" ,
built _in : "addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort" ,
type : "boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort" ,
literal : "true false nothing" } ,
illegal : "//|\\{|\\}|endif|gosub|variant|wend|^\\$ " , contains : [ {
className : "string" , begin : /"(""|[^/n])"C\b/ } , { className : "string" , begin : /"/ ,
end : /"/ , illegal : /\n/ , contains : [ { begin : /""/ } ] } , s , { className : "number" , relevance : 0 ,
variants : [ { begin : /\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/
} , { begin : /\b\d[\d_]*((U?[SIL])|[%&])?/ } , { begin : /&H[\dA-F_]+((U?[SIL])|[%&])?/ } , {
begin : /&O[0-7_]+((U?[SIL])|[%&])?/ } , { begin : /&B[01_]+((U?[SIL])|[%&])?/ } ] } , {
className : "label" , begin : /^\w+:/ } , o , l , { className : "meta" ,
begin : /[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/ ,
end : /$/ , keywords : {
keyword : "const disable else elseif enable end externalsource if region then" } ,
contains : [ l ] } ] } } , grmr _wasm : e => { e . regex ; const n = e . COMMENT ( /\(;/ , /;\)/ )
; return n . contains . push ( "self" ) , { name : "WebAssembly" , keywords : { $pattern : /[\w.]+/ ,
keyword : [ "anyfunc" , "block" , "br" , "br_if" , "br_table" , "call" , "call_indirect" , "data" , "drop" , "elem" , "else" , "end" , "export" , "func" , "global.get" , "global.set" , "local.get" , "local.set" , "local.tee" , "get_global" , "get_local" , "global" , "if" , "import" , "local" , "loop" , "memory" , "memory.grow" , "memory.size" , "module" , "mut" , "nop" , "offset" , "param" , "result" , "return" , "select" , "set_global" , "set_local" , "start" , "table" , "tee_local" , "then" , "type" , "unreachable" ]
} , contains : [ e . COMMENT ( /;;/ , /$/ ) , n , { match : [ /(?:offset|align)/ , /\s*/ , /=/ ] ,
className : { 1 : "keyword" , 3 : "operator" } } , { className : "variable" , begin : /\$[\w_]+/ } , {
match : /(\((?!;)|\))+/ , className : "punctuation" , relevance : 0 } , {
begin : [ /(?:func|call|call_indirect)/ , /\s+/ , /\$[^\s)]+/ ] , className : { 1 : "keyword" ,
3 : "title.function" } } , e . QUOTE _STRING _MODE , { match : /(i32|i64|f32|f64)(?!\.)/ ,
className : "type" } , { className : "keyword" ,
match : /\b(f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|nearest|neg?|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|store(?:8|16|32)?|sqrt|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))\b/
} , { className : "number" , relevance : 0 ,
match : /[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/
} ] } } , grmr _xml : e => {
const n = e . regex , t = n . concat ( /[\p{L}_]/u , n . optional ( /[\p{L}0-9_.-]*:/u ) , /[\p{L}0-9_.-]*/u ) , a = {
className : "symbol" , begin : /&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/ } , i = { begin : /\s/ ,
contains : [ { className : "keyword" , begin : /#?[a-z_][a-z1-9_-]+/ , illegal : /\n/ } ]
} , r = e . inherit ( i , { begin : /\(/ , end : /\)/ } ) , s = e . inherit ( e . APOS _STRING _MODE , {
className : "string" } ) , o = e . inherit ( e . QUOTE _STRING _MODE , { className : "string" } ) , l = {
endsWithParent : ! 0 , illegal : /</ , relevance : 0 , contains : [ { className : "attr" ,
begin : /[\p{L}0-9._:-]+/u , relevance : 0 } , { begin : /=\s*/ , relevance : 0 , contains : [ {
className : "string" , endsParent : ! 0 , variants : [ { begin : /"/ , end : /"/ , contains : [ a ] } , {
begin : /'/ , end : /'/ , contains : [ a ] } , { begin : /[^\s"'=<>`]+/ } ] } ] } ] } ; return {
name : "HTML, XML" ,
aliases : [ "html" , "xhtml" , "rss" , "atom" , "xjb" , "xsd" , "xsl" , "plist" , "wsf" , "svg" ] ,
case _insensitive : ! 0 , unicodeRegex : ! 0 , contains : [ { className : "meta" , begin : /<![a-z]/ ,
end : />/ , relevance : 10 , contains : [ i , o , s , r , { begin : /\[/ , end : /\]/ , contains : [ {
className : "meta" , begin : /<![a-z]/ , end : />/ , contains : [ i , r , o , s ] } ] } ]
} , e . COMMENT ( /<!--/ , /-->/ , { relevance : 10 } ) , { begin : /<!\[CDATA\[/ , end : /\]\]>/ ,
relevance : 10 } , a , { className : "meta" , end : /\?>/ , variants : [ { begin : /<\?xml/ ,
relevance : 10 , contains : [ o ] } , { begin : /<\?[a-z][a-z0-9]+/ } ] } , { className : "tag" ,
begin : /<style(?=\s|>)/ , end : />/ , keywords : { name : "style" } , contains : [ l ] , starts : {
end : /<\/style>/ , returnEnd : ! 0 , subLanguage : [ "css" , "xml" ] } } , { className : "tag" ,
begin : /<script(?=\s|>)/ , end : />/ , keywords : { name : "script" } , contains : [ l ] , starts : {
end : /<\/script>/ , returnEnd : ! 0 , subLanguage : [ "javascript" , "handlebars" , "xml" ] } } , {
className : "tag" , begin : /<>|<\/>/ } , { className : "tag" ,
begin : n . concat ( /</ , n . lookahead ( n . concat ( t , n . either ( /\/>/ , />/ , /\s/ ) ) ) ) ,
end : /\/?>/ , contains : [ { className : "name" , begin : t , relevance : 0 , starts : l } ] } , {
className : "tag" , begin : n . concat ( /<\// , n . lookahead ( n . concat ( t , />/ ) ) ) , contains : [ {
className : "name" , begin : t , relevance : 0 } , { begin : />/ , relevance : 0 , endsParent : ! 0 } ] } ] }
} , grmr _yaml : e => {
const n = "true false yes no null" , t = "[\\w#;/?:@&=+$,.~*'()[\\]]+" , a = {
2026-06-11 22:16:29 +02:00
className : "string" , relevance : 0 , variants : [ { begin : /"/ , end : /"/ } , { begin : /\S+/ } ] ,
contains : [ e . BACKSLASH _ESCAPE , { className : "template-variable" , variants : [ {
begin : /\{\{/ , end : /\}\}/ } , { begin : /%\{/ , end : /\}/ } ] } ] } , i = e . inherit ( a , { variants : [ {
begin : /'/ , end : /'/ , contains : [ { begin : /''/ , relevance : 0 } ] } , { begin : /"/ , end : /"/ } , {
begin : /[^\s,{}[\]]+/ } ] } ) , r = { end : "," , endsWithParent : ! 0 , excludeEnd : ! 0 , keywords : n ,
relevance : 0 } , s = { begin : /\{/ , end : /\}/ , contains : [ r ] , illegal : "\\n" , relevance : 0 } , o = {
begin : "\\[" , end : "\\]" , contains : [ r ] , illegal : "\\n" , relevance : 0 } , l = [ {
className : "attr" , variants : [ { begin : /[\w*@][\w*@ :()\./-]*:(?=[ \t]|$)/ } , {
begin : /"[\w*@][\w*@ :()\./-]*":(?=[ \t]|$)/ } , {
begin : /'[\w*@][\w*@ :()\./-]*':(?=[ \t]|$)/ } ] } , { className : "meta" ,
begin : "^---\\s*$" , relevance : 10 } , { className : "string" ,
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
begin : "[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*" } , {
begin : "<%[%=-]?" , end : "[%-]?%>" , subLanguage : "ruby" , excludeBegin : ! 0 , excludeEnd : ! 0 ,
relevance : 0 } , { className : "type" , begin : "!\\w+!" + t } , { className : "type" ,
begin : "!<" + t + ">" } , { className : "type" , begin : "!" + t } , { className : "type" , begin : "!!" + t
} , { className : "meta" , begin : "&" + e . UNDERSCORE _IDENT _RE + "$" } , { className : "meta" ,
begin : "\\*" + e . UNDERSCORE _IDENT _RE + "$" } , { className : "bullet" , begin : "-(?=[ ]|$)" ,
relevance : 0 } , e . HASH _COMMENT _MODE , { beginKeywords : n , keywords : { literal : n } } , {
className : "number" ,
begin : "\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b"
2026-06-11 22:16:29 +02:00
} , { className : "number" , begin : e . C _NUMBER _RE + "\\b" , relevance : 0 } , s , o , {
className : "string" , relevance : 0 , begin : /'/ , end : /'/ , contains : [ { match : /''/ ,
scope : "char.escape" , relevance : 0 } ] } , a ] , c = [ ... l ]
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; return c . pop ( ) , c . push ( i ) , r . contains = c , { name : "YAML" , case _insensitive : ! 0 ,
2026-06-11 22:16:29 +02:00
aliases : [ "yml" ] , contains : l } } } ) ; const Pe = ne ; for ( const e of Object . keys ( Ue ) ) {
const n = e . replace ( "grmr_" , "" ) . replace ( "_" , "-" ) ; Pe . registerLanguage ( n , Ue [ e ] ) }
return Pe } ( )
Add self-contained Marp HTML export
New export target: a single offline .html rendered from the deck's Marp
Markdown. Bundles (inlines) marked, highlight.js, MathJax (tex-svg, no font
files) and mermaid, so code highlighting, LaTeX math and mermaid diagrams all
render in any browser with no network access.
- MarpHtmlService splits the deck on `---`, strips front-matter, and inlines
the vendored libraries (assets/web_export/) with a </script> breakout guard.
The asset loader is injectable for testing.
- ExportFormat.html wired through ExportService (no rasterization needed),
the export dialog (new button, skips slide rendering) and app_shell
(passes the generated Markdown). Export dialog is now scrollable.
Note: rendered with marked, not Marp Core, so theme fidelity differs from the
in-app preview / PDF / PPTX; the win is a portable, dependency-free deck.
Tests: slide splitting, library inlining, breakout escaping, and an
end-to-end .html export.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-04 01:37:46 +02:00
; "object" == typeof exports && "undefined" != typeof module && ( module . exports = hljs ) ;