Skip to content

Commit

Permalink
[fj-doc-base] doc-2-1.xsd, element **phrase**, **para**, **h** are no…
Browse files Browse the repository at this point in the history
…w allowed as

  children for **para** and **h**.
  • Loading branch information
fugerit79 committed Oct 14, 2024
1 parent 7401ca3 commit 10c4547
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [fj-doc-playground-quarkus] apply DocFacadeSource.cleanInput() to document generation playground
- [fj-doc-playground-quarkus] fj-service-helper-bom-version set to 1.4.3

### Fixed

- [fj-doc-base] doc-2-1.xsd, element **phrase**, **para**, **h** are now allowed as
children for **para** and **h**.

## [8.9.1] - 2024-10-12

### Changed
Expand Down
10 changes: 8 additions & 2 deletions fj-doc-base/src/main/resources/config/doc-2-1.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
/*
* @(#)doc-2-1.xsd
*
* @project : org.fugerit.java.doc.base
* @project : fj-doc-base
* @creation : 2023-08-18
* @version : 2.1.0-rc.1 (2023-08-18)
* @version : 2.1.0-rc.2 (2024-10-14)
*
* XSD for fugerit doc configuration
*/
Expand Down Expand Up @@ -478,6 +478,7 @@
<xsd:choice minOccurs='0' maxOccurs="unbounded">
<xsd:element ref="doc:phrase" />
<xsd:element ref="doc:para" />
<xsd:element ref="doc:h" />
</xsd:choice>
<xsd:attribute name='id' type='doc:idType' use='optional' />
<xsd:attribute name='style' type='doc:styleType' use='optional' />
Expand All @@ -499,6 +500,11 @@
</xsd:complexType>

<xsd:complexType name="hType" mixed='true'>
<xsd:choice minOccurs='0' maxOccurs="unbounded">
<xsd:element ref="doc:phrase" />
<xsd:element ref="doc:para" />
<xsd:element ref="doc:h" />
</xsd:choice>
<xsd:attribute name='id' type='doc:idType' use='optional' />
<xsd:attribute name='style' type='doc:styleType' use='optional' />
<xsd:attribute name='align' type='doc:alignType' use='optional' />
Expand Down

0 comments on commit 10c4547

Please sign in to comment.