-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
173 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const config = { | ||
"extensions": [".svelte.md", ".md", ".svx"], | ||
|
||
"smartypants": { | ||
"dashes": "oldschool" | ||
}, | ||
"layout": { | ||
_: "./src/layouts/default.svelte" | ||
}, | ||
"remarkPlugins": [], | ||
"rehypePlugins": [] | ||
}; | ||
|
||
export default config; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
{ | ||
"name": "~TODO~", | ||
"version": "0.0.1", | ||
"scripts": { | ||
"dev": "svelte-kit dev", | ||
"build": "svelte-kit build", | ||
"preview": "svelte-kit preview" | ||
}, | ||
"devDependencies": { | ||
"@sveltejs/adapter-netlify": "^1.0.0-next.29", | ||
"@sveltejs/kit": "next", | ||
"svelte": "^3.34.0" | ||
}, | ||
"type": "module" | ||
} | ||
"name": "~TODO~", | ||
"version": "0.0.1", | ||
"scripts": { | ||
"dev": "svelte-kit dev", | ||
"build": "svelte-kit build", | ||
"preview": "svelte-kit preview" | ||
}, | ||
"devDependencies": { | ||
"@sveltejs/adapter-netlify": "^1.0.0-next.29", | ||
"@sveltejs/kit": "next", | ||
"mdsvex": "^0.9.8", | ||
"svelte": "^3.34.0" | ||
}, | ||
"type": "module" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<script> | ||
export let title | ||
</script> | ||
|
||
<svelte:head> | ||
<title>{title}</title> | ||
</svelte:head> | ||
|
||
<slot /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: 'Welcome' | ||
--- | ||
|
||
# Welcome to the SvelteKit Netlify CMS example | ||
|
||
You are viewing the `/routes/index.md` file, which is preprocessed by mdsex and is editable directly through Netlify CMS. | ||
|
||
See the [GitHub repo](https://github.com/buhrmi/sveltekit-netlify-cms) for more information. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters