Has anyone been able to get the progress bar to work in chat? I've been trying to send it in chat via API in html/div messages for players to represent visual bars for ammo/health/armor/ect like the tokens have using: <progress value="22" max="100"></progress>
like this: <a href="http://www.w3schools.com/tags/tryit.asp?filename=t" rel="nofollow">http://www.w3schools.com/tags/tryit.asp?filename=t</a>... But it seems to strip it no matter what I do. Also though of using gradients in a div, which sort of works using: background: linear-gradient(to right, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(201,201,201,1) 50%,rgba(229,229,229,1) 100%); But that is overly complicated to try to generate on the fly each time.