Hey folks,
I’m trying to include a hyperlink in my start form, but can’t get the HTML to work right.
I used the following HTML format for the text: <a href="https://www.w3schools.com/">Visit W3Schools.com!</a>
It looks great on the build page:
A hyperlink with clean text But on the public form it shows the HTML markup:
A non-hyperlink showing all the HTML text
Is there a way to get the markup to stay hidden on the public form?
I don’t use HTML markup a lot, so maybe this isn’t even the right format for me to use.
Best answer by genietim
I believe the issue of @Sarah Lane is that you have a space between the closing “]” and the opening “(“.
The link should be
[Visit W3Schools](https://www.w3schools.com)and not
[Visit W3Schools] (https://www.w3schools.com)What you are using here is called Markdown , by the way.
See also the following screenshot:
Wrong (not rendered) and correct (rendered) Markdown link