PI: xlinkThe purpose of a xlink is to produce a XHTML-fragment that links to another module in the same script. <?_wxt xlink id="" fragment="" summary=""?> The parameters are:
Styleclass describing this PI is: wxtxlink and wxtxlinkself. See distributed std styles. Examples:<div> <?_wxt xlink id="_parent"?> </div> This: <div> <?_wxt xlink id="_next" fragment="nextimage"?> </div> may produce this: <div> <span class="wxtxlink"> <a href="mypage.html" title="testing wxt PIs"> <img alt="next" src="../common/templates/next.gif"> </a> </span> </div> Given that nextimage is defined: ... <fragment id="nextimage"> <![CDATA[<img src="{common}/templates/next.gif" alt="next">]]/> </fragment> ... |