Help With Form URLS
I have a blog post that uses markdown syntax and I created the ability (spatie) to add attachments to the post. Now I need a way to list them so the user can copy the url into the blog post. This is whave I have so far:
this will output the url fine but its showing the html so I am gussing this is escaped. I was wondering if it would be possible to create a table here or display the images and then utilize a click to copy url.
6 Replies
Wrap the return in a new HtmlString()
@awcodes
Still escapes the html it seems
hmm. maybe the sprintf needs to run outside the HtmlString
@datarecall Not sure but try removing the string return type:
ahh that could be it let me test that
Is this solved?