vowel 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/404.md +3 -0
- package/README.md +171 -25
- package/bin.js +209 -1
- package/config.js +20 -0
- package/docs-source/.votive.db +0 -0
- package/docs-source/blog/url-ui.md +1 -5
- package/docs-source/blog.md +5 -0
- package/docs-source/docs/items.md +1 -1
- package/docs-source/home.md +1 -1
- package/docs-source/output/about.html +1 -0
- package/docs-source/output/blog/url-ui.html +8 -0
- package/docs-source/output/blog.html +1 -0
- package/docs-source/output/default.css +1 -0
- package/docs-source/output/docs/deploy.html +34 -0
- package/docs-source/output/docs/file-structure.html +24 -0
- package/docs-source/output/docs/folder-settings.html +20 -0
- package/docs-source/output/docs/images.html +2 -0
- package/docs-source/output/docs/items.html +6 -0
- package/docs-source/output/docs/pages.html +101 -0
- package/docs-source/output/docs/styling.html +18 -0
- package/docs-source/output/docs/taxonomies.html +20 -0
- package/docs-source/output/docs.html +28 -0
- package/docs-source/output/features/cards.html +1 -0
- package/docs-source/output/features/editing.html +1 -0
- package/docs-source/output/features/emoji.html +1 -0
- package/docs-source/output/features/frontmatter.html +1 -0
- package/docs-source/output/features/lists.html +1 -0
- package/docs-source/output/features/navigation.html +1 -0
- package/docs-source/output/features/rich-previews.html +1 -0
- package/docs-source/output/features/robots.html +1 -0
- package/docs-source/output/features/rss.html +1 -0
- package/docs-source/output/features/sitemap.html +1 -0
- package/docs-source/output/features/speed.html +1 -0
- package/docs-source/output/features/static.html +1 -0
- package/docs-source/output/features/taxonomies.html +1 -0
- package/docs-source/output/features.html +1 -0
- package/docs-source/output/feed.xml +1 -0
- package/docs-source/output/index.html +21 -0
- package/docs-source/output/reset.css +1 -0
- package/docs-source/output/roadmap.html +87 -0
- package/docs-source/output/robots.txt +14 -0
- package/docs-source/output/sitemap.xml +16 -0
- package/docs-source/output/typography.css +1 -0
- package/docs-source/settings.md +1 -0
- package/getMetadata.js +1 -1
- package/index.js +5 -660
- package/package.json +17 -2
- package/plugins/fonts/index.js +26 -0
- package/plugins/icons/index.js +26 -0
- package/plugins/images/index.js +45 -0
- package/plugins/markdown/index.js +1097 -0
- package/plugins/robots/index.js +23 -0
- package/plugins/styles/index.js +69 -0
- package/plugins/vectors/index.js +38 -0
- package/plugins/xml/index.js +196 -0
- package/stylesheets/DefaultStyles.css +329 -263
- package/stylesheets/ResetStyles.css +119 -123
- package/stylesheets/TypographyStyles.css +259 -242
- package/docs-source/assets/styles.css +0 -51
- package/docs-source/blog/home.md +0 -5
- /package/docs-source/{$features → features}/cards.md +0 -0
- /package/docs-source/{$features → features}/editing.md +0 -0
- /package/docs-source/{$features → features}/emoji.md +0 -0
- /package/docs-source/{$features → features}/frontmatter.md +0 -0
- /package/docs-source/{$features → features}/lists.md +0 -0
- /package/docs-source/{$features → features}/navigation.md +0 -0
- /package/docs-source/{$features → features}/rich-previews.md +0 -0
- /package/docs-source/{$features → features}/robots.md +0 -0
- /package/docs-source/{$features → features}/rss.md +0 -0
- /package/docs-source/{$features → features}/sitemap.md +0 -0
- /package/docs-source/{$features → features}/speed.md +0 -0
- /package/docs-source/{$features → features}/static.md +0 -0
- /package/docs-source/{$features → features}/taxonomies.md +0 -0
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
<!doctypehtml><html lang=en><meta charset=UTF-8><meta name=viewport content="width=device-width, initial-scale=1.0"><meta http-equiv=X-UA-Compatible content=ie-edge><title>Roadmap - Vowel</title><meta property=og:title content="Roadmap - Vowel"><meta property=og:description content="What's planned."><meta property=og:url content=/roadmap><link rel=stylesheet href=/default.css?pcz5bn9y><link rel=stylesheet href=/reset.css?sgx4tj3u><link rel=stylesheet href=/typography.css?8uwrlzjq><meta property=og:site_name><body class=roadmap><header><a class=title href=/ rel=home>Vowel</a><p class=slogan>The easiest way to code a website<nav><a href=/about>About</a><a href=/blog>Blog</a><a href=/docs>Docs</a><a href=/features>Features</a><a href=/roadmap aria-current=page>Roadmap</a></nav></header><main><nav aria-label=Breadcrumbs><a href=/>Home</a><a href=/roadmap aria-current=page>Roadmap</a></nav><h1>Roadmap</h1><p itemprop=description>What's planned.<nav aria-label=Contents><ol class="toc-level toc-level-1"><li class="toc-item toc-item-h2"><a class="toc-link toc-link-h2"href=#v2>V2</a><li class="toc-item toc-item-h2"><a class="toc-link toc-link-h2"href=#v3>V3</a><li class="toc-item toc-item-h2"><a class="toc-link toc-link-h2"href=#wish-list>Wish list</a></ol></nav><h2 id=v2>V2</h2>
|
|
2
|
+
<ul>
|
|
3
|
+
<li>[x] Images as <code><figure></code>s
|
|
4
|
+
<li>[x] Frontmatter interpolation (title and description)
|
|
5
|
+
<li>[x] CSS default
|
|
6
|
+
<li>[x] Better favicon and styles handling
|
|
7
|
+
<li>[x] Ignore README files
|
|
8
|
+
<li>[x] Include breadcrumbs in page titles
|
|
9
|
+
<li>[x] Add hidden routes (<code>$</code>)
|
|
10
|
+
<li>[x] Image alt text
|
|
11
|
+
<li>[x] Deploy action (Vercel)
|
|
12
|
+
<li>[x] Add anchor links for headings
|
|
13
|
+
<li>[x] Figure out how to stop components from remounting on every change
|
|
14
|
+
<li>[x] Demote headings global option (headings are now demoted intelligently)
|
|
15
|
+
<li>[x] Taxonomy lists
|
|
16
|
+
<li>[x] <del>Strikethrough</del>
|
|
17
|
+
<li>[x] Checklists
|
|
18
|
+
<li>[x] GitHub-style notes
|
|
19
|
+
<li>[x] Footnotes
|
|
20
|
+
<li>[x] Better create/delete handling in HMR
|
|
21
|
+
<li>[x] Disable default styles option
|
|
22
|
+
<li>[x] Better theme CSS handling
|
|
23
|
+
<li>[x] Create style reset theme
|
|
24
|
+
<li>[x] Debug settings page HMR (temporary fix with full-page refresh)
|
|
25
|
+
<li>[x] Fix checklist boxes
|
|
26
|
+
<li>[x] Handle SVGs properly
|
|
27
|
+
<li>[x] Slogan in homepage <code><title></code>
|
|
28
|
+
<li>[x] Prioritize <code>title</code> and <code>h1</code> for meta title
|
|
29
|
+
<li>[x] Prioritize <code>title</code> over <code>h1</code> for thumbnails
|
|
30
|
+
<li>[x] Tables of contents
|
|
31
|
+
<li>[x] Add a default 404 page
|
|
32
|
+
</ul>
|
|
33
|
+
<h2 id=v3>V3</h2>
|
|
34
|
+
<ul>
|
|
35
|
+
<li>[ ] Fallback homepages
|
|
36
|
+
<li>[ ] Date format customizing
|
|
37
|
+
<li>[ ] Init CLI
|
|
38
|
+
<ul>
|
|
39
|
+
<li>Option for destructive actions
|
|
40
|
+
<li>Create homepage
|
|
41
|
+
<li>Create CSS file
|
|
42
|
+
</ul>
|
|
43
|
+
|
|
44
|
+
<li>[ ] ::Mark::
|
|
45
|
+
<li>[ ] Frontmatter interpolation (image)
|
|
46
|
+
<li>[ ] Add more header metadata?
|
|
47
|
+
<li>[ ] Define folder settings
|
|
48
|
+
<ul>
|
|
49
|
+
<li>[ ] Title
|
|
50
|
+
<li>[ ] Breadrumb
|
|
51
|
+
</ul>
|
|
52
|
+
|
|
53
|
+
<li>[x] Define special page properties
|
|
54
|
+
<ul>
|
|
55
|
+
<li>[x] Title
|
|
56
|
+
<li>[x] Description
|
|
57
|
+
<li>[x] Meta image
|
|
58
|
+
<li>[x] Date
|
|
59
|
+
<li>[ ] Modified date
|
|
60
|
+
<li>[ ] Tags
|
|
61
|
+
<li>[ ] Author/Authors
|
|
62
|
+
</ul>
|
|
63
|
+
|
|
64
|
+
<li>[ ] Make file names kebab-cased for URLs and links
|
|
65
|
+
<li>[ ] Code highlighter
|
|
66
|
+
<li>[ ] Add in-browser search
|
|
67
|
+
<li>[ ] Make RSS optional
|
|
68
|
+
<li>[ ] Pagination
|
|
69
|
+
</ul>
|
|
70
|
+
<h2 id=wish-list>Wish list</h2>
|
|
71
|
+
<ul>
|
|
72
|
+
<li>[ ] Automatic file creation
|
|
73
|
+
<li>[ ] Image serving and optimization
|
|
74
|
+
<li>[ ] GUI
|
|
75
|
+
<li>[ ] More deploy actions
|
|
76
|
+
<li>[ ] Optional JSON interactivity (ratings, comments, SubPubHub)
|
|
77
|
+
<li>[ ] Redirects
|
|
78
|
+
<li>[ ] Advanced markdown
|
|
79
|
+
<ul>
|
|
80
|
+
<li>[ ] Highlight
|
|
81
|
+
<li>[ ] Sanitize
|
|
82
|
+
<li>[ ] Mermaid
|
|
83
|
+
<li>[ ] Math
|
|
84
|
+
<li>[ ] Wikilinks
|
|
85
|
+
</ul>
|
|
86
|
+
|
|
87
|
+
</ul></main><aside><nav><ul><li><a href=index.html>Home</a><li><a href=/about.html>About</a><li><a href=/blog.html>Blog</a><ul><li><a href=/blog/url-ui.html>Long Live the URL</a></ul><li><a href=/docs.html>Docs</a><ul><li><a href=/docs/deploy.html>Deploy</a><li><a href=/docs/file-structure.html>Files</a><li><a href=/docs/folder-settings.html>Folders</a><li><a href=/docs/images.html>Images</a><li><a href=/docs/items.html>Items</a><li><a href=/docs/pages.html>Pages</a><li><a href=/docs/styling.html>Styling</a><li><a href=/docs/taxonomies.html>Taxonomies</a></ul><li><a href=/features.html>Features</a><ul><li><a href=/features/cards.html>Cards</a><li><a href=/features/editing.html>Live editing</a><li><a href=/features/emoji.html>Emoji favicons</a><li><a href=/features/frontmatter.html>Frontmatter</a><li><a href=/features/lists.html>Blog</a><li><a href=/features/navigation.html>Navigation</a><li><a href=/features/rich-previews.html>Rich link previews</a><li><a href=/features/robots.html>Robots</a><li><a href=/features/rss.html>RSS</a><li><a href=/features/sitemap.html>Sitemap</a><li><a href=/features/speed.html>Speed</a><li><a href=/features/static.html>Static generation</a><li><a href=/features/taxonomies.html>Taxonomies</a></ul><li><a href=/roadmap.html>Roadmap</a></ul></nav></aside><footer><section class=copyright>© 2026</section><section class=shoutout>Made with <a href=https://vowel.cc>Vowel</a></section></footer>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
|
+
<urlset
|
|
3
|
+
xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
|
|
4
|
+
xmlns:news="https://www.google.com/schemas/sitemap-news/0.9"
|
|
5
|
+
xmlns:xhtml="https://www.w3.org/1999/xhtml"
|
|
6
|
+
xmlns:mobile="https://www.google.com/schemas/sitemap-mobile/1.0"
|
|
7
|
+
xmlns:image="https://www.google.com/schemas/sitemap-image/1.1"
|
|
8
|
+
xmlns:video="https://www.google.com/schemas/sitemap-video/1.1"
|
|
9
|
+
>
|
|
10
|
+
<url>
|
|
11
|
+
<loc>https://getvowel.com</loc>
|
|
12
|
+
<changefreq>daily</changefreq>
|
|
13
|
+
<priority>0.7</priority>
|
|
14
|
+
</url>
|
|
15
|
+
<url><loc>https://getvowel.com/blog/url-ui.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/about.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/blog.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/docs.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/docs/deploy.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/docs/file-structure.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/docs/folder-settings.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/docs/images.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/docs/items.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/docs/pages.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/docs/styling.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/docs/taxonomies.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/cards.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/editing.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/emoji.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/frontmatter.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/lists.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/navigation.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/rich-previews.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/robots.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/rss.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/sitemap.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/speed.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/static.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/features/taxonomies.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/index.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://getvowel.com/roadmap.html</loc><changefreq>daily</changefreq><priority>0.7</priority></url>
|
|
16
|
+
</urlset>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@layer reset;@layer typography{html{font-family:-apple-system,BlinkMacSystemFont,avenir next,avenir,segoe ui,helvetica neue,helvetica,Cantarell,Ubuntu,roboto,noto,arial,sans-serif}h1,h2,h3,h4,h5,h6{text-rendering:optimizelegibility;margin-top:.5rem;margin-bottom:1rem;font-weight:600;line-height:1.1}h1{font-size:3rem;font-weight:800;line-height:1.2}h2{margin-top:3rem;font-size:2.6rem}h3{margin-top:3rem;font-size:2rem}h4{font-size:1.44rem}h5{font-size:1.15rem}h6{font-size:.96rem}article h1{font-size:2rem;font-weight:600}@media only screen and (width<=720px){h1{font-size:2.5rem}h2{font-size:2.1rem}h3{font-size:1.75rem}h4{font-size:1.25rem}}p,ol,ul{margin-top:0}ul ul,ul ol,ol ol,ol ul{font-size:100%}li{margin-bottom:.5rem}li>p:not(:last-child){margin:0;padding:0}pre,code{font-family:Menlo,Consolas,Monaco,Liberation Mono,Lucida Console,monospace}code{border-radius:5px;margin-inline:0;padding:3px 4px;font-size:.9em}pre{border-radius:5px;padding:1rem 1.5rem;overflow-x:auto}blockquote{margin:1.5em 0;padding:0 1.6em}a{text-decoration:none}li.checked,li.unchecked{padding-left:.8rem}figcaption{margin-top:.5rem;font-style:italic}article+article{margin-top:1rem}article a,article a:hover{color:unset}article h2{margin-top:2rem}th,td{text-align:left;padding:12px 15px}th:first-child,td:first-child{padding-left:0}th:last-child,td:last-child{padding-right:0}:where(pre,blockquote,dl,figure,table,p,ul,ol,form,article,section,aside,time,dl):not(:last-child){margin-bottom:2.5rem}hr{border-width:0;margin-top:3rem;margin-bottom:3.5rem}dt{font-weight:500}time{display:block}time a{color:unset}.breadcrumbs a{color:unset;font-size:.8em}.breadcrumbs>a:not(:last-child):after{content:"/";margin-inline:.2em}nav>a{text-wrap:nowrap}.icon{width:1em;height:1em}header a[rel=home]{color:unset;font-size:2.8em;font-weight:900}header .logo{width:1em;height:1em;display:inline-block}header .slogan{font-weight:500}nav a:where([aria-current=page],[aria-current=true]),nav a:where([aria-current=page],[aria-current=true]):hover{color:unset;cursor:default;text-decoration:none}aside h2{margin:0 0 .5em;font-size:1.1em}}
|
package/docs-source/settings.md
CHANGED