Void addDocumentLink(HTMLDocument doc, Relationship relate, String uri, String title=createString(0), String ctype=createString(0))
Arguments
doc: The HTML documentrel: The relationship this link describesuri: The resource linked to.type: The content-type of the linked document (optional)
Usage
Adds a document-level link to another resource.
addDocumentLink(doc,Rel("next"),
webappName()+"slide="+(slideno+1));
addDocumentLink(doc,Rev("made"),"author@example.invalid");
Related
- The Relationship documentation explains the semantics of forward and reverse document links.