fluid.hyperlink
-
aliashyperlink= fluid.utils.nodeBuilder!(Hyperlink, "a").nodeBuilder;Basic builder for theHyperlinknode. -
classHyperlink: fluid.input_node.InputNode!(Label).InputNode;A hyperlink is a reference in text that opens a document or a web page when clicked.This is the equivalent of the HTML<a>element.-
stringurl;URL address this hyperlink connects to.Clicking the link will open this page in a relevant app (web browser). -
@safe this(string url, Rope text); @safe this(string url, string text); @safe this(string url);Create a hyperlink.Parameters
string urlURL this link points to. Rope textVisible text describing this link. If not specified, the URL will be used. -
@safe voidpress();Open this link in an external application.
-