I have what seems like should be a common problem, but can't seem to find the answer. When using the PageLink datatype in SitePub components, is there a way to grab the page name from the link? So, for example, I have a list of links to pages, and don't want to load the sitemap. Instead of using
[html]
Content XML:
...
Display this string
$PAGE_LINK[blah/blah]
Display this string for the second link
$PAGE_LINK[blah/page2]
...
[/html]
and making the link with this xsl:
[html]
Appearance:
[/html]
I would like to be able to do something like this instead:
[html]
Content XML:
...
$PAGE_LINK[blah/blah]
$PAGE_LINK[blah/page2]
...
[/html]
with some function that I could pass the PAGE_LINK to and get the name back...
[html]
Appearance:
[/html]
Is there anything like this??