Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.0-alpha-9
-
Fix Version/s: 1.1.1
-
Component/s: Module - Xdoc
-
Labels:None
-
Number of attachments :
Description
head element is actually allowed but not correctly processed by the parser: the content of head is directly put in the core of the document.
Here is a short sample: the following is a valid m1 xdoc (correct me if I am wrong!)
<document> <properties> <title>Dummy Page</title> </properties> <head> <meta name="keyword" content="maven"/> </head> <body> <section name="blabla"> ... </section> </body> </document>
and produces the following html
...
<div id="contentBox">
<head>
<meta name="keyword" content="maven"></meta>
</head>
<a name="blabla"></a><div class="section"><h2>blabla</h2>
...
Issue Links
- is depended upon by
-
DOXIASITETOOLS-19
SiteRendererSink ignores meta info in head
-
-
MSITE-194
xdoc's <head/> gets rendered in the HTML body, not in head
-
- relates to
-
DOXIA-150
Spurious <?xml version="1.0" encoding="UTF-8"?> in generated <head> section
-
-
DOXIA-123
Create an xdoc DTD or XSD for maven 2
-
- supercedes
-
DOXIA-104
Support use of custom properties in XDOC files
-
This is actually a dupe of
MSITE-194.