forked from machinekit/machinekit-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxhtml11-image.conf
20 lines (18 loc) · 895 Bytes
/
xhtml11-image.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Allow wildcards in image names
[attributes]
imageextensions=png,jpg,jpeg,gif
[image-inlinemacro]
<span class="image">
<a class="image" href="{link}">
<img src="{imagesdir=}{imagesdir?/}{sys:{scriptdir=./}image-wildcard "{indir}/{target}" {masterdir={indir}} {imageextensions}}" alt="{alt={target}}"{width? width="{width}"}{height? height="{height}"}{title? title="{title}"} />
{link#}</a>
</span>
[image-blockmacro]
<div class="imageblock"{id? id="{id}"}{align? style="text-align:{align};"}{float? style="float:{float};"}>
<div class="content">
<a class="image" href="{link}">
<img src="{imagesdir=}{imagesdir?/}{sys:{scriptdir=./}image-wildcard "{indir}/{target}" {masterdir={indir}} {imageextensions}}" alt="{alt={target}}"{width? width="{width}"}{height? height="{height}"} />
{link#}</a>
</div>
<div class="title">{caption={figure-caption} {counter:figure-number}. }{title}</div>
</div>