Skip to content

Commit

Permalink
fix: xml schema
Browse files Browse the repository at this point in the history
  • Loading branch information
sdkrystian committed May 30, 2024
1 parent 561f213 commit 028b98e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion mrdocs.rnc
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,8 @@ grammar

BlockNode = (
Admonition | Brief | Code | Heading | ListItem |
Paragraph | Param | Returns | TParam | Throws )
Paragraph | Param | Returns | TParam | Throws |
See | Precondition | Postcondition)

Admonition = Paragraph
Brief = element brief { TextNode * }
Expand All @@ -387,6 +388,12 @@ grammar
TParam = element tparam {
attribute name { text } ?,
TextNode * }
See = element see {
attribute class { text } ?,
TextNode * }
Precondition = element pre { TextNode * }
Postcondition = element post { TextNode * }


TextNode = ( Link | Styled | Text | Reference | Copied )

Expand Down

0 comments on commit 028b98e

Please sign in to comment.