I'm currently adding notes through a playbook via Python automation.
I'll have a formatted string:
f'<a href="https://www.url.com"> Link Label </a>'
Then when add it to the task notes, the inside of the tag gets wiped out and I'm left with:
<a> Link Label </a>
I've seen workable links in the notes, how do I go about this?
@jasonr if you are on any recent version the default language is now Markdown.
See the Markdown cheat sheet for the syntax: https://www.markdownguide.org/cheat-sheet/
-- If this helps please mark as a solution. Happy SOARing! --
@jasonr if you are on any recent version the default language is now Markdown.
See the Markdown cheat sheet for the syntax: https://www.markdownguide.org/cheat-sheet/
-- If this helps please mark as a solution. Happy SOARing! --
@phanTom that did the trick, thank you.