The intent is to allow users some flexibility in what is visible. We want to allow users to:
- show or hide comments
- show or hide function bodies
- show just class names by hiding the entire class scope
This can be done by wrapping text that may be hidden with a styled <div>
4.
The hard part is to place the <div>s in appropriate places. To do that you will need
to do some relatively simple parsing. We'll give you some help with that.