diff --git a/pgp.py b/pgp.py
index 681a7a48a..1712e611e 100644
--- a/pgp.py
+++ b/pgp.py
@@ -693,7 +693,8 @@ def actor_to_vcard_xml(actor: {}) -> str:
vcard_str += ' ' + actor['name'] + '\n'
vcard_str += ' ' + \
actor['preferredUsername'] + '\n'
- vcard_str += ' ' + actor['summary'] + '\n'
+ vcard_str += ' ' + \
+ remove_html(actor['summary']) + '\n'
email_address = get_email_address(actor)
if email_address:
vcard_str += ' ' + email_address + '\n'