Generates HTML5
figure elements.
The content of this shortcode specifies a caption to output inside a nested
figcaption element.
Examples
Example usage:
<?# Figure Src="/assets/wyam.jpg" ?>
Wyam Logo
<?#/ Figure ?>
Example output:
<figure>
<img src="/assets/wyam.jpg" />
<figcaption>Wyam Logo</figcaption>
</figure>
Parameters
The following parameters can be used without names in the order below or with names (provided they are named) in any order. When using named parameters, the syntax should be `Name=Value` or `Name="Value"`.
-
SrcURL of the image to be displayed.
-
LinkIf the image needs to be hyperlinked, URL of the destination.
-
TargetOptional
targetattribute for the URL ifLinkparameter is set. -
RelOptional
relattribute for the URL ifLinkparameter is set. -
AltAlternate text for the image if the image cannot be displayed.
-
Classclassattribute to apply to thefigureelement. -
Heightheightattribute of the image. -
Widthwidthattribute of the image.
