Handbook Glossary
factorcode.org
link-href ( obj -- url )
Link components

Prev:link-title ( obj -- string )


Vocabulary
html.components

Inputs
objan object


Outputs
urla string or url


Word description
Outputs the URL to render for a link to the object.

Definition
IN: html.components

GENERIC: link-href ( obj -- url )


Methods
USING: accessors html.components webapps.planet ;

M: blog link-href www-url>> ;


USING: accessors html.components ;

M: simple-link link-href href>> ;


USING: html.components strings ;

M: string link-href ;


USING: html.components urls ;

M: url link-href ;