Hi community,
Does anyone know how to make a button instead of just a hyperlink, like this?
In a post?
You can create a linked text like you usually do with Markdown
[Like this?](discourse.example.com)
And then you can add <kbd>
before that and </kbd>
afterwards.
Seems like the text in your example is also bold, so in the end you would have something like
<kbd>**[Sign me up](yourlink)**</kbd>
Awesome, thank you so much!!
Tweaked it a bit to make it open in a new tab:
<kbd><a href="yourlink" target="_blank">Sign me up</a></kbd>