List of usage examples for org.jdom2.output Format escapeAttribute
public static final String escapeAttribute(final EscapeStrategy strategy, final String value)
From source file:org.apache.wiki.render.CustomXMLOutputProcessor.java
License:Apache License
protected void attributeEscapedEntitiesFilter(final Writer out, final FormatStack fstack, final String value) throws IOException { write(out, Format.escapeAttribute(fstack.getEscapeStrategy(), value)); }