mirror of https://github.com/kdl-org/kdl.git
Script updating gh-pages from f90aa2e. [ci skip]
This commit is contained in:
parent
25ef01cfae
commit
8eb7c5bae3
|
|
@ -46,7 +46,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="zkat/schema-v2/draft-marchan-kdl2.html" class="html draft-marchan-kdl2" title="The KDL Document Language (HTML)">KDL</a></td>
|
<td><a href="zkat/schema-v2/draft-marchan-kdl2.html" class="html draft-marchan-kdl2" title="The KDL Document Language (HTML)">KDL</a></td>
|
||||||
<td><a href="zkat/schema-v2/draft-marchan-kdl2.txt" class="txt draft-marchan-kdl2" title="The KDL Document Language (Text)">plain text</a></td>
|
<td><a href="zkat/schema-v2/draft-marchan-kdl2.txt" class="txt draft-marchan-kdl2" title="The KDL Document Language (Text)">plain text</a></td>
|
||||||
<td><a href="https://author-tools.ietf.org/api/iddiff?url_1=https://kdl-org.github.io/kdl/draft-marchan-kdl2.txt&url_2=https://kdl-org.github.io/kdl/zkat/schema-v2/draft-marchan-kdl2.txt" class="diff draft-marchan-kdl2">diff with main</a></td>
|
<td>same as main</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<h2>Preview for branch <a href="zkat/utf-8-must">zkat/utf-8-must</a></h2>
|
<h2>Preview for branch <a href="zkat/utf-8-must">zkat/utf-8-must</a></h2>
|
||||||
|
|
|
||||||
|
|
@ -20,13 +20,13 @@ oficial version of the language, see https://kdl.dev/spec.
|
||||||
|
|
||||||
|
|
||||||
" name="description">
|
" name="description">
|
||||||
<meta content="xml2rfc 3.25.0" name="generator">
|
<meta content="xml2rfc 3.27.0" name="generator">
|
||||||
<meta content="Document-Language" name="keyword">
|
<meta content="Document-Language" name="keyword">
|
||||||
<meta content="Configuration" name="keyword">
|
<meta content="Configuration" name="keyword">
|
||||||
<meta content="draft-marchan-kdl2-latest" name="ietf.draft">
|
<meta content="draft-marchan-kdl2-latest" name="ietf.draft">
|
||||||
<!-- Generator version information:
|
<!-- Generator version information:
|
||||||
xml2rfc 3.25.0
|
xml2rfc 3.27.0
|
||||||
Python 3.12.8
|
Python 3.12.9
|
||||||
ConfigArgParse 1.7
|
ConfigArgParse 1.7
|
||||||
google-i18n-address 3.1.1
|
google-i18n-address 3.1.1
|
||||||
intervaltree 3.1.0
|
intervaltree 3.1.0
|
||||||
|
|
@ -447,7 +447,7 @@ dl {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dl > dt {
|
dl:not(.dlNewline) > dt {
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: 2ch;
|
margin-right: 2ch;
|
||||||
min-width: 8ch;
|
min-width: 8ch;
|
||||||
|
|
@ -1056,7 +1056,7 @@ svg :is([fill="white"], [fill^="#fff"]) {
|
||||||
<thead><tr>
|
<thead><tr>
|
||||||
<td class="left"></td>
|
<td class="left"></td>
|
||||||
<td class="center">KDL</td>
|
<td class="center">KDL</td>
|
||||||
<td class="right">January 2025</td>
|
<td class="right">February 2025</td>
|
||||||
</tr></thead>
|
</tr></thead>
|
||||||
<tfoot><tr>
|
<tfoot><tr>
|
||||||
<td class="left">Marchán & KDL Contributors</td>
|
<td class="left">Marchán & KDL Contributors</td>
|
||||||
|
|
@ -1071,7 +1071,7 @@ svg :is([fill="white"], [fill^="#fff"]) {
|
||||||
<dd class="workgroup">KDL Community</dd>
|
<dd class="workgroup">KDL Community</dd>
|
||||||
<dt class="label-published">Published:</dt>
|
<dt class="label-published">Published:</dt>
|
||||||
<dd class="published">
|
<dd class="published">
|
||||||
<time datetime="2025-01-26" class="published">26 January 2025</time>
|
<time datetime="2025-02-23" class="published">23 February 2025</time>
|
||||||
</dd>
|
</dd>
|
||||||
<dt class="label-authors">Authors:</dt>
|
<dt class="label-authors">Authors:</dt>
|
||||||
<dd class="authors">
|
<dd class="authors">
|
||||||
|
|
@ -2760,11 +2760,11 @@ document := bom? version? nodes
|
||||||
nodes := (line-space* node)* line-space*
|
nodes := (line-space* node)* line-space*
|
||||||
|
|
||||||
base-node := slashdash? type? node-space* string
|
base-node := slashdash? type? node-space* string
|
||||||
(node-space+ slashdash? node-prop-or-arg)*
|
(node-space* (node-space | slashdash) node-prop-or-arg)*
|
||||||
// slashdashed node-children must always be after props and args.
|
// slashdashed node-children must always be after props and args.
|
||||||
(node-space+ slashdash node-children)*
|
(node-space* slashdash node-children)*
|
||||||
(node-space+ node-children)?
|
(node-space* node-children)?
|
||||||
(node-space+ slashdash node-children)*
|
(node-space* slashdash node-children)*
|
||||||
node-space*
|
node-space*
|
||||||
node := base-node node-terminator
|
node := base-node node-terminator
|
||||||
final-node := base-node node-terminator?
|
final-node := base-node node-terminator?
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
KDL Community K. Marchán
|
KDL Community K. Marchán
|
||||||
Microsoft
|
Microsoft
|
||||||
KDL Contributors
|
KDL Contributors
|
||||||
26 January 2025
|
23 February 2025
|
||||||
|
|
||||||
|
|
||||||
The KDL Document Language
|
The KDL Document Language
|
||||||
|
|
@ -1064,11 +1064,11 @@ Table of Contents
|
||||||
nodes := (line-space* node)* line-space*
|
nodes := (line-space* node)* line-space*
|
||||||
|
|
||||||
base-node := slashdash? type? node-space* string
|
base-node := slashdash? type? node-space* string
|
||||||
(node-space+ slashdash? node-prop-or-arg)*
|
(node-space* (node-space | slashdash) node-prop-or-arg)*
|
||||||
// slashdashed node-children must always be after props and args.
|
// slashdashed node-children must always be after props and args.
|
||||||
(node-space+ slashdash node-children)*
|
(node-space* slashdash node-children)*
|
||||||
(node-space+ node-children)?
|
(node-space* node-children)?
|
||||||
(node-space+ slashdash node-children)*
|
(node-space* slashdash node-children)*
|
||||||
node-space*
|
node-space*
|
||||||
node := base-node node-terminator
|
node := base-node node-terminator
|
||||||
final-node := base-node node-terminator?
|
final-node := base-node node-terminator?
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue