I’d like to have an FAQ topic where as many of the questions are visible as possible, to allow easy browsing by users. One way to achieve this is to hide the text of the answers and just click on the question to reveal the answer text.
This is similar to the way the mobile Wikipedia interface works.
I’ve used html rather than markdown with some success before, though I’ve used <big> rather than <h3> to avoid the new line issue but still have larger titles. Something like this:
<hr>
<details>
<summary>
<big> Question </big>
<hr>
</summary>
This is an answer
<hr>
</details>
<details>
<summary>
<big> Question </big>
<hr>
</summary>
This is an answer
<hr>
</details>
<details>
<summary>
<big> Question </big>
<hr>
</summary>
This is an answer
<hr>
</details>