xep2md: Include JID in author entry

master
Kim Alvefur 2 years ago
parent 3dc3253a38
commit d3d6c62426

@ -260,7 +260,9 @@ do
end
events.add_handler("author/", function (event)
if author.email then
if author.email and author.jid then
author = string.format("%s %s <%s> <xmpp:%s>", author.firstname, author.surname, author.email, author.jid);
elseif author.email then
author = string.format("%s %s <%s>", author.firstname, author.surname, author.email);
else
author = string.format("%s %s", author.firstname, author.surname);

Loading…
Cancel
Save