mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
40715ffbd4
In the past, we have hit annoying incompatibilities when people have attempted to rebuild ELinks documentation with new versions of AsciiDoc: http://bugzilla.elinks.cz/show_bug.cgi?id=989 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=491820 So now we bundle the configuration files from a known good version to let ELinks documentation be built with them regardless of which version has been installed on the machine.
44 lines
983 B
Plaintext
44 lines
983 B
Plaintext
#
|
|
# xhtml11-quirks.conf
|
|
#
|
|
# Workarounds for IE6's broken # and incomplete CSS2.
|
|
#
|
|
|
|
[image-blockmacro]
|
|
<div class="imageblock">
|
|
<a id="{id}"></a>
|
|
<div class="content">
|
|
<a class="image" href="{link}">
|
|
<img src="{target}" alt="{1={target}}"{1? title="{1}"}{width? width="{width}"}{height? height="{height}"}/>
|
|
{link#}</a>
|
|
</div>
|
|
<div class="image-title">{caption=Figure: }{title}</div>
|
|
</div>
|
|
|
|
[sidebarblock]
|
|
<div class="sidebarblock">
|
|
<a id="{id}"></a>
|
|
<div class="sidebar-content">
|
|
<div class="sidebar-title">{title}</div>
|
|
|
|
|
</div></div>
|
|
|
|
[quoteblock]
|
|
<div class="quoteblock">
|
|
<a id="{id}"></a>
|
|
<div class="title">{title}</div>
|
|
<div class="quoteblock-content">
|
|
|
|
|
<div class="attribution">
|
|
<span class="emphasis">{citetitle}</span><br />
|
|
— {attribution}
|
|
</div></div></div>
|
|
|
|
[exampleblock]
|
|
<div class="exampleblock">
|
|
<a id="{id}"></a>
|
|
<div class="title">{caption=Example: }{title}</div>
|
|
<div class="exampleblock-content">
|
|
|
|
|
</div></div>
|