References
Solutions > Links > References
Summary: Creates a reference section with citations
Status: Experimental
Maintainer: member.markus00000?.
Downloads: references.php
Status: Experimental
Maintainer: member.markus00000?.
Downloads: references.php
To create a citation use:
<code>
</code>
To display a list of all citations, simply put
<code>
</code> somewhere on your page.
If you use the same reference twice, it will only show up once in the references. It will then have two links to jump back to either citation.
You can style the citation links using .cite in code.style. For example:
<code>
.cite {
text-decoration: none;
}
</code>
If you experience different line heights of lines with citations, try to add this code to code.style:
<code>
sup, sub {
height: 0;
line-height: 1;
vertical-align: baseline;
position: relative;
}
sup {
bottom: 1ex;
}
sub {
top: 0.5ex;
}
</code>

