Can I format data as a link? #459
-
I expected that if I passed in |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Are you using [PSCustomObject] @{
xxx = New-HTMLText -Text "xxx [MD](xxx)"
} for it to work. Alternatively you can use real HTML directly, but you need the InvokeTags for it to be activated. |
Beta Was this translation helpful? Give feedback.
-
I've just tried New-HtmlText and that didn't work -
Where do I tell it I want to use HTML Tags? Or do I need to use a different approach? |
Beta Was this translation helpful? Give feedback.
Table -InvokeHTMLTags -DataTable $someData
in your example