This version is out of date, covering development from v9.0.0 to v9.3.0. It is maintained here only for inbound reference links from elsewhere. It is no longer actively updated.

Jump to the current version of aTbRef

Tinderbox v9 Icon

^url( item )^


Code Type: 

Code Scope of Action: 

Code First Added: 

Code Altered: 

 Creation of Links   [other codes of this type]

 item   [codes with similar scope]

 Baseline

 format"


^url( item )^

The relative URL of the exported HTML web page for the item. The URL of an alias to a note is the URL attribute of that note's original. It is effectively ^host^ + ^path^ + ^file(note)^.

Do not confuse this with ^value(URL)^ which will return the content of the note's URL field.

^url(this)^ will return the relative path from the current page to the page the included note creates when it is exported. If the note is not exported, but only appears on included pages, ^url(this)^ is undefined.

As ^url()^ only supplies the 'href' parameter value for an HTML link, if you want to customise your link, e.g. by setting a CSS class parameter, you can do that in the template rather than needing to do so in the TB code itself.

^url(this)^ gives a relative path from the current page to the note; by comparison, ^path(this) gives the path from the top level of the site to the note. Thus:

^url(BorderBevel)^ gives: "../../Attributes/SystemAttributeList/BorderBevel.html".

^path(BorderBevel)^ gives: "index/Attributes/SystemAttributeList/BorderBevel.html".

^url(this)^ gives: "#".

^path(this)^ gives: "index/ExportCodes/ExportCodes-FullListing/urlitem.html".

To make a deliberate 'manual' HTML link to another note see ^linkTo()^.