Add design-principles and overview sections
This commit is contained in:
parent
1f8369a1ac
commit
21008f9f02
|
|
@ -1,5 +1,5 @@
|
||||||
<section class="kdl-section" id="design-and-discussion">
|
<section class="kdl-section" id="design-and-discussion">
|
||||||
<h2>Design and discussion</h2>
|
<h2>Design and Discussion</h2>
|
||||||
<p>
|
<p>
|
||||||
kdl is still extremely new, and discussion about the format should happen
|
kdl is still extremely new, and discussion about the format should happen
|
||||||
over on the
|
over on the
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
<section class="kdl-section" id="design-principles">
|
||||||
|
<h2>Design Principles</h2>
|
||||||
|
<ol>
|
||||||
|
<li>Maintainability</li>
|
||||||
|
<li>Flexibility</li>
|
||||||
|
<li>Cognitive simplicity and Learnability</li>
|
||||||
|
<li>Ease of de/serialization</li>
|
||||||
|
<li>Ease of implementation</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
These are the guiding principles behind the design of KDL, in order of
|
||||||
|
importance. These principles will hopefully be useful in tie-breaking and
|
||||||
|
otherwise directing specific decisions when it comes down to it. They are
|
||||||
|
intentionally vague when it comes to specifics, but more concrete
|
||||||
|
definitions for each one will be settled on as the project matures.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
@ -0,0 +1,113 @@
|
||||||
|
<section class="kdl-section" id="overview">
|
||||||
|
<h2>Overview</h2>
|
||||||
|
|
||||||
|
<p>The basic syntax is similar to SDLang:</p>
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
<code>
|
||||||
|
// This is a node with a single string value
|
||||||
|
title "Hello, World"
|
||||||
|
|
||||||
|
// Multiple values are supported, too
|
||||||
|
bookmarks 12 15 188 1234
|
||||||
|
|
||||||
|
// Nodes can have properties
|
||||||
|
author "Alex Monad" email="alex@example.com" active=true
|
||||||
|
|
||||||
|
// Nodes can be arbitrarily nested
|
||||||
|
contents {
|
||||||
|
section "First section" {
|
||||||
|
paragraph "This is the first paragraph"
|
||||||
|
paragraph "This is the second paragraph"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Nodes can be separated into multiple lines
|
||||||
|
title \
|
||||||
|
"Some title"
|
||||||
|
|
||||||
|
// Comment formats:
|
||||||
|
|
||||||
|
// C++ style
|
||||||
|
|
||||||
|
/*
|
||||||
|
C style multiline
|
||||||
|
*/
|
||||||
|
|
||||||
|
tag /*foo=true*/ bar=false
|
||||||
|
</code>
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p>But kdl changes a few details:</p>
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
<code>
|
||||||
|
// Files must be utf8 encoded!
|
||||||
|
smile "😁"
|
||||||
|
|
||||||
|
// Instead of anonymous nodes, nodes and properties can be wrapped
|
||||||
|
// in "" for arbitrary node names.
|
||||||
|
"!@#$@$%Q#$%~@!40" "1.2.3" "!!!!!"=true
|
||||||
|
|
||||||
|
// The following is a legal bare identifier:
|
||||||
|
foo123~!@#$%^&*.:'|<>/?+ "weeee"
|
||||||
|
|
||||||
|
// kdl specifically allows properties and values to be
|
||||||
|
// interspersed with each other, much like CLI commands.
|
||||||
|
foo bar=true "baz" quux=false 1 2 3
|
||||||
|
|
||||||
|
// strings can be multiline as-is, without a different syntax.
|
||||||
|
string "my
|
||||||
|
multiline
|
||||||
|
value"
|
||||||
|
|
||||||
|
// raw/unescaped strings use the "r" prefix on string literals and
|
||||||
|
// otherwise behave the same, including multiline support.
|
||||||
|
raw r"C:\Users\kdl"
|
||||||
|
|
||||||
|
// You can add any number of # after the r and the last " to
|
||||||
|
// disambiguate literal " characters.
|
||||||
|
other-raw r#"hello"world"#
|
||||||
|
|
||||||
|
// There is a single decimal number type, much like JSON's.
|
||||||
|
num 1.234e-42
|
||||||
|
|
||||||
|
// Numbers can have underscores to help readability:
|
||||||
|
bignum 1_000_000
|
||||||
|
|
||||||
|
// There is additional support for literal hexadecimal, octal, and binary input.
|
||||||
|
my-hex 0xdeadbeef
|
||||||
|
my-octal 0o755
|
||||||
|
my-binary 0b1010_1101
|
||||||
|
|
||||||
|
// You can comment out individual nodes with /-. In the case below, everything
|
||||||
|
// up until the closing `}` becomes commented.
|
||||||
|
/-mynode "foo" key=1 {
|
||||||
|
a
|
||||||
|
b
|
||||||
|
c
|
||||||
|
}
|
||||||
|
|
||||||
|
// You can apply /- ("slashdash") comments to individual values, properties,
|
||||||
|
// or child blocks, too:
|
||||||
|
mynode /-"commented" "not commented" /-key="value" /-{
|
||||||
|
a
|
||||||
|
b
|
||||||
|
}
|
||||||
|
</code>
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p>The following SDLang features are removed altogether:</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>"Anonymous" nodes</li>
|
||||||
|
<li>Binary data literals</li>
|
||||||
|
<li>Date/time formats</li>
|
||||||
|
<li><code>on</code> and <code>off</code> booleans</li>
|
||||||
|
<li>Backtick strings</li>
|
||||||
|
<li>Semicolons</li>
|
||||||
|
<li>Namespaces with <code>:</code></li>
|
||||||
|
<li>Shell style (<code>#</code>) and Lua style (<code>--</code>) comments</li>
|
||||||
|
<li>Distinction between 32/64/128-bit numbers. There's just numbers.</li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
|
@ -10,3 +10,5 @@ title: kdl - Kat's Document Language
|
||||||
|
|
||||||
{% include partials/description.html %}
|
{% include partials/description.html %}
|
||||||
{% include partials/design-and-discussion.html %}
|
{% include partials/design-and-discussion.html %}
|
||||||
|
{% include partials/design-principles.html %}
|
||||||
|
{% include partials/overview.html %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue