This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add default layout that doesn't override the head
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 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,29 @@ | ||
<script context="module"> | ||
import Heading1 from 'src/mdsvex/h1.svelte'; | ||
import Heading2 from 'src/mdsvex/h2.svelte'; | ||
import Heading3 from 'src/mdsvex/h3.svelte'; | ||
import UnorderedList from 'src/mdsvex/ul.svelte'; | ||
import ListItem from 'src/mdsvex/li.svelte'; | ||
import Table from 'src/mdsvex/table.svelte'; | ||
import TableHead from 'src/mdsvex/th.svelte'; | ||
import TableRow from 'src/mdsvex/tr.svelte'; | ||
import TableData from 'src/mdsvex/td.svelte'; | ||
import Mark from 'src/mdsvex/mark.svelte'; | ||
import Paragraph from 'src/mdsvex/p.svelte'; | ||
export { | ||
Heading1 as h1, | ||
Heading2 as h2, | ||
Heading3 as h3, | ||
UnorderedList as ul, | ||
ListItem as li, | ||
Table as table, | ||
TableHead as th, | ||
TableRow as tr, | ||
TableData as td, | ||
Mark as mark, | ||
Paragraph as p, | ||
}; | ||
</script> | ||
|
||
<slot /> |