diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2019-10-21 20:35:59 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2019-10-22 16:30:41 +0200 |
commit | 559cb6ee4b3acafc6e2233c18e40ddc40a6786e2 (patch) | |
tree | b200277c464fd232592b3ed7b46e692aecbf0291 /helpers | |
parent | fbfb839983b6d08291c3f49cf30d8c3b45b41507 (diff) |
Give note,tip,warning same children as paragraph
But narrow attributes not necessary (role, heading...)
Change-Id: Icb022d0694a442186bef46fae172631a96662353
Reviewed-on: https://gerrit.libreoffice.org/81292
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/xmlhelp.dtd | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/helpers/xmlhelp.dtd b/helpers/xmlhelp.dtd index 135f561a62..7e508cdc5f 100644 --- a/helpers/xmlhelp.dtd +++ b/helpers/xmlhelp.dtd @@ -272,15 +272,29 @@ Version Nov 2018 id CDATA #REQUIRED visibility (hidden | visible) #IMPLIED > -<!ELEMENT note (#PCDATA | comment | embedvar | br | emph | item | link | switchinline | variable | ahelp | bookmark | keycode | menuitem | input | literal | widget)*> -<!ATTLIST note id CDATA #REQUIRED xml-lang CDATA #IMPLIED localize CDATA #IMPLIED + +<!ELEMENT note (#PCDATA | image | comment | embedvar | br | emph | sub | sup | item | link | switchinline | variable | ahelp | object | bookmark | menuitem | input | keycode | literal | widget | help-id-missing)*> +<!ATTLIST note + id CDATA #REQUIRED + l10n CDATA #IMPLIED + xml-lang CDATA #IMPLIED + localize CDATA #IMPLIED > -<!ELEMENT tip (#PCDATA | comment | embedvar | br | emph | item | link | switchinline | variable | ahelp | bookmark | keycode | menuitem | input | literal | widget)*> -<!ATTLIST tip id CDATA #REQUIRED xml-lang CDATA #IMPLIED localize CDATA #IMPLIED +<!ELEMENT tip (#PCDATA | image | comment | embedvar | br | emph | sub | sup | item | link | switchinline | variable | ahelp | object | bookmark | menuitem | input | keycode | literal | widget | help-id-missing)*> +<!ATTLIST tip + id CDATA #REQUIRED + l10n CDATA #IMPLIED + xml-lang CDATA #IMPLIED + localize CDATA #IMPLIED > -<!ELEMENT warning (#PCDATA | comment | embedvar | br | emph | item | link | switchinline | variable | ahelp | bookmark | keycode | menuitem | input | literal | widget)*> -<!ATTLIST warning id CDATA #REQUIRED xml-lang CDATA #IMPLIED localize CDATA #IMPLIED +<!ELEMENT warning (#PCDATA | image | comment | embedvar | br | emph | sub | sup | item | link | switchinline | variable | ahelp | object | bookmark | menuitem | input | keycode | literal | widget | help-id-missing)*> +<!ATTLIST warning + id CDATA #REQUIRED + l10n CDATA #IMPLIED + xml-lang CDATA #IMPLIED + localize CDATA #IMPLIED > + <!ELEMENT help-id-missing EMPTY> |