(summary: str, add_blank: bool = True)
| 645 | |
| 646 | |
| 647 | def _details_open(summary: str, add_blank: bool = True) -> str: |
| 648 | s = f"<details><summary><strong>{summary}</strong></summary>\n" |
| 649 | if add_blank: |
| 650 | s += "\n" |
| 651 | return s |
| 652 | |
| 653 | |
| 654 | def _details_close() -> str: |
no outgoing calls
no test coverage detected