public interface AsciidoctorTaskAttributes
The attribute methods all Asciidoctor conversion tasks will offer.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public void |
attributes(Map<String, Object> m)Shortcut method to add additional asciidoctor attributes. |
|
public List<AsciidoctorAttributeProvider> |
getAttributeProviders()Shortcut method to access additional providers of attributes. |
|
public Map<String, Object> |
getAttributes()Shortcut method for obtaining attributes. |
|
public void |
setAttributes(Map<String, Object> m)Shortcut method to apply a new set of Asciidoctor attributes, clearing any attributes previously set. |
Shortcut method to add additional asciidoctor attributes.
In most implementations this will just access the attributes method
on the appropriate task extension derived from AbstractImplementationEngineExtension
m - Map with new options Shortcut method to access additional providers of attributes.
In most implementations this will just access the getAttributeProviders method
on the appropriate task extension derived from AbstractImplementationEngineExtension
Shortcut method for obtaining attributes.
In most implementations this will just access the getAttributes method
on the appropriate task extension derived from AbstractImplementationEngineExtension
Shortcut method to apply a new set of Asciidoctor attributes, clearing any attributes previously set.
In most implementations this will just access the setAttributes method
on the appropriate task extension derived from AbstractImplementationEngineExtension
m - Map with new options