Skip to content

Commit 0df0e02

Browse files
committed
chore: javadoc work
1 parent 47b0c01 commit 0df0e02

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+751
-756
lines changed

include/mrdox/Metadata/Javadoc.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,9 @@ class MRDOX_DECL
599599
Javadoc
600600
{
601601
public:
602+
/** Constructor.
603+
*/
604+
MRDOX_DECL
602605
Javadoc() noexcept;
603606

604607
/** Constructor

mrdox.rnc

+1-4
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,6 @@ grammar
271271
#
272272
#---------------------------------------------
273273

274-
# VFALCO What does this mean?
275-
# JavaDoc not in a nested grammar , so we can convert it to a XSD
276-
277274
Javadoc = element doc { BlockNode * }
278275

279276
BlockNode = (
@@ -284,7 +281,7 @@ grammar
284281
Brief = element brief { TextNode * }
285282
Code = element code { TextNode* }
286283
Heading = element head { text }
287-
ListItem = Paragraph
284+
ListItem = element listitem { TextNode* }
288285
Paragraph = element para {
289286
attribute class { text } ?,
290287
TextNode * }

src/lib/-XML/XMLWriter.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -614,9 +614,9 @@ XMLWriter::
614614
writeListItem(
615615
doc::ListItem const& node)
616616
{
617-
tags_.open("item");
617+
tags_.open("listitem");
618618
writeNodes(node.children);
619-
tags_.close("item");
619+
tags_.close("listitem");
620620
}
621621

622622
void

0 commit comments

Comments
 (0)