Registered just to post this solution.
Jabbergeist's solution works, but it has changed a little bit due to the way calibre has also.
A working solution for Calibre 7.xx that works in the FOOTER TEMPLATE is:
Quote:
program:
#Load Comments
comments = field('comments');
#Eliminate first 8 and last 10 to kill DIV and P text then kill all remaining HTML Tags
comments = substr(comments, 21, -22);
comments = re(comments, '<[^>]*>', '');
# Show at most two authors, on separate lines.
authors = field('authors');
num = count(authors, ' & ');
authors = sublist(authors, 0, 2, ' & ');
authors = list_re(authors, ' & ', '(.+)', '<b>\1');
authors = re(authors, ' & ', '<br>');
authors = re(authors, '&&', '&');
# Combine Comments and Authors
comments & '<br><br>' & authors
|