mirror of https://gitlab.com/bashrc2/epicyon
Remove html from description
parent
a21aad9511
commit
1ae8c909c3
3
pgp.py
3
pgp.py
|
|
@ -693,7 +693,8 @@ def actor_to_vcard_xml(actor: {}) -> str:
|
||||||
vcard_str += ' <fn><text>' + actor['name'] + '</text></fn>\n'
|
vcard_str += ' <fn><text>' + actor['name'] + '</text></fn>\n'
|
||||||
vcard_str += ' <nickname><text>' + \
|
vcard_str += ' <nickname><text>' + \
|
||||||
actor['preferredUsername'] + '</text></nickname>\n'
|
actor['preferredUsername'] + '</text></nickname>\n'
|
||||||
vcard_str += ' <note><text>' + actor['summary'] + '</text></note>\n'
|
vcard_str += ' <note><text>' + \
|
||||||
|
remove_html(actor['summary']) + '</text></note>\n'
|
||||||
email_address = get_email_address(actor)
|
email_address = get_email_address(actor)
|
||||||
if email_address:
|
if email_address:
|
||||||
vcard_str += ' <email><text>' + email_address + '</text></email>\n'
|
vcard_str += ' <email><text>' + email_address + '</text></email>\n'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue