File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export const download = ( filename : string , text : string ) => {
2- var element = document . createElement ( 'a' ) ;
3- element . setAttribute ( 'href' , 'data:text/plain;charset=utf-8,' + encodeURIComponent ( text ) ) ;
4- element . setAttribute ( 'download' , filename ) ;
2+ var element = document . createElement ( 'a' )
3+ element . setAttribute ( 'href' , 'data:text/plain;charset=utf-8,' + encodeURIComponent ( text ) )
4+ element . setAttribute ( 'download' , filename )
55
6- element . style . display = 'none' ;
7- document . body . appendChild ( element ) ;
6+ element . style . display = 'none'
7+ document . body . appendChild ( element )
88
9- element . click ( ) ;
9+ element . click ( )
1010
11- document . body . removeChild ( element ) ;
12- }
11+ document . body . removeChild ( element )
12+ }
Original file line number Diff line number Diff line change 1- import type { TocItems } from '@nick-mazuk/ui-svelte/src/components/table-of-contents' ;
1+ import type { TocItems } from '@nick-mazuk/ui-svelte/src/components/table-of-contents'
22
33export const libraryPages : TocItems = [
44 {
Original file line number Diff line number Diff line change 77
88 import Seo from ' @nick-mazuk/ui-svelte/src/utilities/seo/seo.svelte'
99 import Spacer from ' @nick-mazuk/ui-svelte/src/utilities/spacer/spacer.svelte'
10+
11+ import luaLogo from ' $lib/assets/images/lua-logo.gif'
1012 </script >
1113
12- <Seo title =" Help" siteName =" JW Lua Scripts" />
14+ <Seo
15+ title =" Help"
16+ siteName =" JW Lua Scripts"
17+ description =" Use Finale faster than the blink of an eye. Simplify workflows to just one click. All for free, forever."
18+ openGraph =" {{
19+ image : {
20+ src : luaLogo ,
21+ width : 128 ,
22+ height : 128 ,
23+ },
24+ }}"
25+ />
1326
1427<main id =" main-content" >
1528 <div class =" wrapper !max-w-2xl my-12" >
Original file line number Diff line number Diff line change 55
66 import Seo from ' @nick-mazuk/ui-svelte/src/utilities/seo/seo.svelte'
77 import Spacer from ' @nick-mazuk/ui-svelte/src/utilities/spacer/spacer.svelte'
8+
9+ import luaLogo from ' $lib/assets/images/lua-logo.gif'
810 </script >
911
10- <Seo title =" Install" siteName =" JW Lua Scripts" />
12+ <Seo
13+ title =" Install"
14+ siteName =" JW Lua Scripts"
15+ description =" Use Finale faster than the blink of an eye. Simplify workflows to just one click. All for free, forever."
16+ openGraph =" {{
17+ image : {
18+ src : luaLogo ,
19+ width : 128 ,
20+ height : 128 ,
21+ },
22+ }}"
23+ />
1124
1225<main id =" main-content" >
1326 <div class =" wrapper !max-w-2xl my-6" >
Original file line number Diff line number Diff line change 33 import Spacer from ' @nick-mazuk/ui-svelte/src/utilities/spacer/spacer.svelte'
44 import AccordionGroup from ' @nick-mazuk/ui-svelte/src/components/accordion/accordion-group/accordion-group.svelte'
55 import Accordion from ' @nick-mazuk/ui-svelte/src/components/accordion/accordion.svelte'
6+
7+ import luaLogo from ' $lib/assets/images/lua-logo.gif'
68 </script >
79
8- <Seo title =" macOS Installation" siteName =" JW Lua Scripts" />
10+ <Seo
11+ title =" macOS Installation"
12+ siteName =" JW Lua Scripts"
13+ description =" Use Finale faster than the blink of an eye. Simplify workflows to just one click. All for free, forever."
14+ openGraph =" {{
15+ image : {
16+ src : luaLogo ,
17+ width : 128 ,
18+ height : 128 ,
19+ },
20+ }}"
21+ />
922
1023<main id =" main-content" class =" my-12 wrapper !max-w-2xl" >
1124 <h1 class =" h3" >macOS installation</h1 >
Original file line number Diff line number Diff line change 33 import Spacer from ' @nick-mazuk/ui-svelte/src/utilities/spacer/spacer.svelte'
44 import AccordionGroup from ' @nick-mazuk/ui-svelte/src/components/accordion/accordion-group/accordion-group.svelte'
55 import Accordion from ' @nick-mazuk/ui-svelte/src/components/accordion/accordion.svelte'
6+
7+ import luaLogo from ' $lib/assets/images/lua-logo.gif'
68 </script >
79
8- <Seo title =" Windows Installation" siteName =" JW Lua Scripts" />
10+ <Seo
11+ title =" Windows Installation"
12+ siteName =" JW Lua Scripts"
13+ description =" Use Finale faster than the blink of an eye. Simplify workflows to just one click. All for free, forever."
14+ openGraph =" {{
15+ image : {
16+ src : luaLogo ,
17+ width : 128 ,
18+ height : 128 ,
19+ },
20+ }}"
21+ />
922
1023<main id =" main-content" class =" my-12 wrapper !max-w-2xl" >
1124 <h1 class =" h3" >Windows installation</h1 >
Original file line number Diff line number Diff line change 99 import Spacer from ' @nick-mazuk/ui-svelte/src/utilities/spacer/spacer.svelte'
1010 import Feature from ' $lib/components/home/feature.svelte'
1111 import Image from ' $lib/components/image.svelte'
12+
13+ import luaLogo from ' $lib/assets/images/lua-logo.gif'
1214 </script >
1315
14- <Seo title =" " siteName =" JW Lua Scripts" />
16+ <Seo
17+ title =" "
18+ siteName =" JW Lua Scripts"
19+ description =" Use Finale faster than the blink of an eye. Simplify workflows to just one click. All for free, forever."
20+ openGraph =" {{
21+ image : {
22+ src : luaLogo ,
23+ width : 128 ,
24+ height : 128 ,
25+ },
26+ }}"
27+ />
1528
1629<main id =" main-content" >
1730 <section class =" wrapper my-16" >
Original file line number Diff line number Diff line change 1616 import Button from ' @nick-mazuk/ui-svelte/src/elements/button/button.svelte'
1717 import Seo from ' @nick-mazuk/ui-svelte/src/utilities/seo/seo.svelte'
1818
19+ import luaLogo from ' $lib/assets/images/lua-logo.gif'
20+
1921 let scripts: ScriptData [] = scriptData
2022 const search = new Search (' name' )
2123 search .addIndex (' name' )
7577 )
7678 </script >
7779
78- <Seo title =" Scripts" siteName =" JW Lua Scripts" />
80+ <Seo
81+ title =" Scripts"
82+ siteName =" JW Lua Scripts"
83+ description =" Use Finale faster than the blink of an eye. Simplify workflows to just one click. All for free, forever."
84+ openGraph =" {{
85+ image : {
86+ src : luaLogo ,
87+ width : 128 ,
88+ height : 128 ,
89+ },
90+ }}"
91+ />
7992
8093<main class =" wrapper my-6" id =" main-content" >
8194 <Spacer />
You can’t perform that action at this time.
0 commit comments