Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Jan 12, 2024
1 parent b7b1c47 commit a37d200
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
3 changes: 1 addition & 2 deletions grammars/ietf.rnc
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ paragraph-with-footnote =
ul =
element ul {
attribute id { xsd:ID },
attribute nobullet { text }?,
attribute nobullet { xsd:boolean }?,
attribute spacing { text }?,
attribute indent { text }?,
attribute empty { xsd:boolean }?,
attribute bare { xsd:boolean }?,
li+, note*
}
Expand Down
21 changes: 20 additions & 1 deletion grammars/ietf.rng
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
<data type="boolean"/>
</attribute>
</optional>
<optional>
<attribute name="indent"/>
</optional>
<zeroOrMore>
<ref name="TextElement"/>
</zeroOrMore>
Expand All @@ -47,6 +50,9 @@
<ref name="Alignments"/>
</attribute>
</optional>
<optional>
<attribute name="indent"/>
</optional>
<zeroOrMore>
<choice>
<ref name="TextElement"/>
Expand All @@ -64,11 +70,21 @@
<data type="ID"/>
</attribute>
<optional>
<attribute name="nobullet"/>
<attribute name="nobullet">
<data type="boolean"/>
</attribute>
</optional>
<optional>
<attribute name="spacing"/>
</optional>
<optional>
<attribute name="indent"/>
</optional>
<optional>
<attribute name="bare">
<data type="boolean"/>
</attribute>
</optional>
<oneOrMore>
<ref name="li"/>
</oneOrMore>
Expand Down Expand Up @@ -101,6 +117,9 @@
<optional>
<attribute name="start"/>
</optional>
<optional>
<attribute name="indent"/>
</optional>
<oneOrMore>
<ref name="li"/>
</oneOrMore>
Expand Down

0 comments on commit a37d200

Please sign in to comment.