({ name, topics })
| 62 | `; |
| 63 | |
| 64 | const writeSectionContents = ({ name, topics }) => |
| 65 | `**[${reverseDashCase(name)}](#${dashCase(name)})** |
| 66 | ${topics.map( writeTopicContents ).join('')} |
| 67 | `; |
| 68 | |
| 69 | const writeTopicContents = ({ name }) => `* [${reverseDashCase(name)}](#${dashCase(name)}) |
| 70 | `; |
nothing calls this directly
no test coverage detected