Break up main page into partials
This commit is contained in:
parent
78e904b120
commit
741f4eef29
|
|
@ -0,0 +1 @@
|
|||
src/_*.*
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
<section class="py-10 px-2 md:px-4 prose prose-xl mx-auto" id="description">
|
||||
<p>
|
||||
kdl is a document language, mostly based on
|
||||
<a href="https://sdlang.org/">SDLang</a>, with xml-like semantics that looks
|
||||
like you're invoking a bunch of CLI commands!
|
||||
</p>
|
||||
|
||||
<p>
|
||||
It's meant to be used both as a serialization format and a configuration
|
||||
language, and is relatively light on syntax compared to XML.
|
||||
</p>
|
||||
</section>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<section class="py-10 px-2 md:px-4 prose prose-xl mx-auto" id="design-and-discussion">
|
||||
<h2>Design and discussion</h2>
|
||||
<p>
|
||||
kdl is still extremely new, and discussion about the format should happen
|
||||
over on the
|
||||
<a href="https://github.com/kdoclang/kdl/discussions">discussions</a> page
|
||||
in the Github repo. Feel free to jump in and give us your 2 cents!
|
||||
</p>
|
||||
</section>
|
||||
|
|
@ -7,15 +7,7 @@ title: kdl - Kat's Document Language
|
|||
<h1 class="text-4xl text-center">kdl - Kat's Document Language</h1>
|
||||
</header>
|
||||
|
||||
<section class="px-2 md:px-4 prose prose-xl mx-auto" id="description">
|
||||
<p>
|
||||
kdl is a document language, mostly based on
|
||||
<a href="https://sdlang.org/">SDLang</a>, with xml-like semantics that looks
|
||||
like you're invoking a bunch of CLI commands!
|
||||
</p>
|
||||
|
||||
<p>
|
||||
It's meant to be used both as a serialization format and a configuration
|
||||
language, and is relatively light on syntax compared to XML.
|
||||
</p>
|
||||
</section>
|
||||
{% include ./_description.html %}
|
||||
{% include ./_design-and-discussion.html %}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue