I was wondering if it's possible to have a "spoiler text", that is, differently from this question, a text only visible when the mouse hover on it, in GitHub Flavored Markdown.
I've tried something along this way, but it does not work.
<p>Lorem ipsum <span id="hidden_text" style="visibility: hidden;" onmouseover="document.getElementById('hidden_text').style.visibility='visible';">hidden stuff hidden stuff</span> text text text</p>
EDIT:
While trying to figure out the problem, I found out in the GitHub repo of GFM that the html is heavily sanitized. So, I'm even more curious to know if it's possible to obtain this behavior.