Skip to content

Commit 5192294

Browse files
michael-ohboutemy
authored andcommitted
[DOXIA-671] Double quotes contained in markdown page are removed in HTML output
Ideally, one would use this list in the future: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references This closes #123
1 parent ceb7729 commit 5192294

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

doxia-core/src/main/java/org/apache/maven/doxia/parser/AbstractXmlParser.java

+33-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
import org.codehaus.plexus.util.FileUtils;
5454
import org.codehaus.plexus.util.IOUtil;
5555
import org.codehaus.plexus.util.StringUtils;
56+
import org.codehaus.plexus.util.xml.pull.EntityReplacementMap;
5657
import org.codehaus.plexus.util.xml.pull.MXParser;
5758
import org.codehaus.plexus.util.xml.pull.XmlPullParser;
5859
import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
@@ -99,6 +100,18 @@ public abstract class AbstractXmlParser
99100

100101
private boolean validate = false;
101102

103+
/**
104+
* If set the parser will be loaded with all single characters
105+
* from the XHTML specification.
106+
* The entities used:
107+
* <ul>
108+
* <li>http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent</li>
109+
* <li>http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent</li>
110+
* <li>http://www.w3.org/TR/xhtml1/DTD/xhtml-symbol.ent</li>
111+
* </ul>
112+
*/
113+
private boolean addDefaultEntities = true;
114+
102115
/** {@inheritDoc} */
103116
public void parse( Reader source, Sink sink, String reference )
104117
throws ParseException
@@ -128,7 +141,9 @@ public void parse( Reader source, Sink sink, String reference )
128141
// 2 second parsing to process
129142
try
130143
{
131-
XmlPullParser parser = new MXParser();
144+
XmlPullParser parser = addDefaultEntities
145+
? new MXParser( EntityReplacementMap.defaultEntityReplacementMap )
146+
: new MXParser();
132147

133148
parser.setInput( src );
134149

@@ -578,6 +593,23 @@ public void setValidate( boolean validate )
578593
this.validate = validate;
579594
}
580595

596+
/**
597+
* @since 2.0.0-M4
598+
*/
599+
public boolean getAddDefaultEntities()
600+
{
601+
return addDefaultEntities;
602+
}
603+
604+
/**
605+
* @since 2.0.0-M4
606+
*/
607+
public void setAddDefaultEntities( boolean addDefaultEntities )
608+
{
609+
this.addDefaultEntities = addDefaultEntities;
610+
}
611+
612+
581613
// ----------------------------------------------------------------------
582614
// Private methods
583615
// ----------------------------------------------------------------------

0 commit comments

Comments
 (0)