| Method | Description |
|---|---|
| org.apache.maven.doxia.document.DocumentMeta.getKeywords() |
use the <keyWords/> tag
instead of.
|
| org.apache.maven.doxia.document.DocumentMeta.setKeywords(String) |
use the <keyWords/> tag
instead of.
|
| org.apache.maven.doxia.parser.AbstractParser.getBasedir() |
this does not work in multi-module builds, see DOXIA-373
|
| org.apache.maven.doxia.sink.impl.XhtmlBaseSink.figure() |
Use
XhtmlBaseSink.figure(SinkEventAttributes), this method is only kept for
backward compatibility. Note that the behavior is different though, as this method
writes an img tag, while correctly the img tag should be written by figureGraphics(). |
| org.apache.maven.doxia.sink.impl.XhtmlBaseSink.figureCaption() |
Use
XhtmlBaseSink.figureCaption(SinkEventAttributes),
this method is only kept for backward compatibility. Note that the behavior is
different though, as this method only writes an alt attribute. |
| org.apache.maven.doxia.sink.impl.XhtmlBaseSink.figureGraphics(String) |
Use
XhtmlBaseSink.figureGraphics(String,SinkEventAttributes),
this method is only kept for backward compatibility. Note that the behavior is
different though, as this method does not write the img tag, only the src attribute. |
| org.apache.maven.doxia.sink.impl.XhtmlBaseSink.resetState() |
since 1.1.2, use
XhtmlBaseSink.init() instead of. |
| Constructor | Description |
|---|---|
| org.apache.maven.doxia.macro.MacroRequest(Map<String, Object>, File) |
prefer other constructor
|
| org.apache.maven.doxia.parser.module.AbstractParserModule(String, String, String) |
can cause confusion with constructor with multiple extensions
|
| org.apache.maven.doxia.parser.ParseException(Exception) |
Using
ParseException(Exception, int, int) to specify the line and column number. |