I want to be able to click on a word (or phrase) and show a paragraph, and then click on it again to hide the paragraph.
If I was coding a webpage in HTML5 I could use the <details> and <summary> tags something like:
<details> <summary>Show/Hide the paragraph.</summary> <p>The Paragraph.</p> </details>
Which should show/hide the paragraph containing the phrase “The Paragraph.” every time the phrase “Show/Hide the paragraph.” is clicked.
Is there a way to acheive a similar sort of effect in a Writer Document?