Quote:
Originally Posted by ownedbycats
Code:
if
$publisher=='Archive of Our Own'
then
id = select($identifiers, 'ao3');
urls_from_identifiers('ao3:id', 1)
fi,
results in
Code:
<a href="https://archiveofourown.org/works/id" title="ao3:id">Archive of Our Own</a>
How do I get the results of id into the output, rather than literally 'id'?
|
Code:
urls_from_identifiers('ao3:' & id, 1)
or
Code:
urls_from_identifiers(strcat('ao3:', id), 1)