I've got an embed structured exactly how I want - the only problem is the URL isn't being expanded automatically by Discord, like it does for URLs sent in normal messages.
e.g. This is the embed I've created:
This is the code for the embed:
embed=Embed(title=f'{rss_item[1]}', description=f'**Date:** {date_activity}\n**Title:** {rss_object.title}\n**Read more:** {rss_object.link}' color=0x04bd23)
embed.set_author(name="Private Sector Feed", icon_url="https://cdn-icons-png.flaticon.com/512/700/700652.png")
private_sector_feed.send(embed=embed)
As you can see, the URL isn't enriched by Discord. When sent as a normal message object, it does get expanded:
All I want is for the link enrichment to occur for the embed URL - do you know if there's a way to make that work?
Alternatively, is there a better way to format the plain message? The best I can see to do is bold some text, but other than that it's just a wall of text separated by the enriched links, which doesn't look good: