Skip to content

Commit

Permalink
Merge pull request oasis-tcs#59 from robander/includeElement
Browse files Browse the repository at this point in the history
Update specializations of "include" to nest fallback
  • Loading branch information
Robert D Anderson authored Jan 8, 2020
2 parents 79d8c9d + 6d03989 commit 524d5de
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doctypes/dtd/technicalContent/dtd/mathmlDomain.mod
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<!-- LONG NAME: MathML reference -->
<!ENTITY % mathmlref.content
"EMPTY"
"(%fallback;)?"
>
<!ENTITY % mathmlref.attributes
"href
Expand Down
2 changes: 1 addition & 1 deletion doctypes/dtd/technicalContent/dtd/programmingDomain.mod
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@

<!-- LONG NAME: Literal code reference -->
<!ENTITY % coderef.content
"EMPTY"
"(%fallback;)?"
>
<!ENTITY % coderef.attributes
"href
Expand Down
2 changes: 1 addition & 1 deletion doctypes/dtd/technicalContent/dtd/svgDomain.mod
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<!-- LONG NAME: SVG element reference -->
<!ENTITY % svgref.content
"EMPTY"
"(%fallback;)?"
>
<!ENTITY % svgref.attributes
"href
Expand Down
4 changes: 3 additions & 1 deletion doctypes/rng/technicalContent/rng/mathmlDomain.rng
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ All Rights Reserved.
<div>
<a:documentation>FULL NAME: MathML reference</a:documentation>
<define name="mathmlref.content">
<empty/>
<optional>
<ref name="fallback"/>
</optional>
</define>
<define name="mathmlref.attributes">
<optional>
Expand Down
4 changes: 3 additions & 1 deletion doctypes/rng/technicalContent/rng/programmingDomain.rng
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@ PUBLIC "-//OASIS//ELEMENTS DITA 2.0 Programming Domain//EN"
<div>
<a:documentation> LONG NAME: Literal code reference </a:documentation>
<define name="coderef.content">
<empty/>
<optional>
<ref name="fallback"/>
</optional>
</define>
<define name="coderef.attributes">
<optional>
Expand Down
4 changes: 3 additions & 1 deletion doctypes/rng/technicalContent/rng/svgDomain.rng
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ DITA SVG Domain
<div>
<a:documentation>LONG NAME: SVG referece</a:documentation>
<define name="svgref.content">
<empty/>
<optional>
<ref name="fallback"/>
</optional>
</define>
<define name="svgref.attributes">
<optional>
Expand Down

0 comments on commit 524d5de

Please sign in to comment.