The Problem: Ugly bare URL string in the rsults list for each record
Your Mission: Modify filter for nicer URL presentation
View the Problem:
How:
My answer:
BEFORE: $$i =~ s,<URL[^>]*>(.*?)</URL>,<strong>URL:</strong> <a href="$1" target="_blank">$1</a><br>,gs;
AFTER: $$i =~ s,<URL[^>]*>(.*?)</URL>,<a href="$1" target="_blank"><strong>Link to full document</strong></a><br>,gs;