-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
c9d90a3
commit 6bb7b05
Showing
9 changed files
with
162 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,34 @@ | ||
{ | ||
"$schema": "https://sup2point0.github.io/stranger-quarkdown/squarkup-schema.json", | ||
"$schema": "../squarkdown/resources/squarkup-schema.json", | ||
|
||
"repo": "Stranger Quarkdown", | ||
"site": "site", | ||
"sources": ["docs"], | ||
"repo": "Squarkdown", | ||
|
||
"styles": "styles", | ||
"assets": ".assets", | ||
"fonts": [ | ||
"Fira+Sans" | ||
"paths / site": "site", | ||
"paths / sources": [ | ||
".", | ||
"docs" | ||
], | ||
"paths / exclude": null, | ||
"paths / dest": "src/routes/(docs)/", | ||
"out / file-name": "~content", | ||
"out / site-data": "src/site.json", | ||
|
||
"if-no-dir": ["warn", "create"] | ||
"opts / if-no-dir": ["warn", "create"], | ||
"opts / on-error": "kill", | ||
|
||
"bases / path": "src/parts/bases/", | ||
"bases / page.svelte": "~page.svelte", | ||
"bases / page.js": "~page.js", | ||
"styles / path": "src/styles/", | ||
"styles / page-styles": "src/styles/", | ||
"styles / base-style": "article", | ||
"assets / path": ".assets", | ||
"assets / site-assets": ".assets/site", | ||
"assets / extensions": [ | ||
"jpg", "jpeg", "png", "svg", "ttf" | ||
], | ||
"fonts / queries": [ | ||
"Fira+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400", | ||
"Sora:wght@100..800" | ||
] | ||
} |
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,5 +1,8 @@ | ||
~content.svx | ||
|
||
# output | ||
build/ | ||
static/ | ||
|
||
# internal | ||
node_modules/ | ||
|
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
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,5 @@ | ||
export async function load() | ||
{ | ||
let data = await import("./~content.svx"); | ||
return data.metadata; | ||
} |
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,8 @@ | ||
<script> | ||
import Content from "./~content.svx"; | ||
</script> | ||
|
||
|
||
<Content /> |
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