Skip to content

Commit

Permalink
push lint f ixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann committed Aug 15, 2023
1 parent a5272cb commit 13d3318
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
7 changes: 5 additions & 2 deletions apps/demo/src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@exampledev/[email protected]/new.min.css">
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@exampledev/[email protected]/new.min.css"
/>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
Expand Down
7 changes: 5 additions & 2 deletions apps/demo/svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ const config = {
markdoc({
layouts: {
default: join(dirname(fileURLToPath(import.meta.url)), './src/lib/Layout.svelte'),
alternative: join(dirname(fileURLToPath(import.meta.url)), './src/lib/LayoutAlternative.svelte')
}
alternative: join(
dirname(fileURLToPath(import.meta.url)),
'./src/lib/LayoutAlternative.svelte',
),
},
}),
],
extensions: ['.markdoc', '.svelte'],
Expand Down
2 changes: 1 addition & 1 deletion packages/process/src/processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const processor = (
const code = transformer({
content,
nodes,
layouts
layouts,
});

return {
Expand Down

0 comments on commit 13d3318

Please sign in to comment.