(tags)
| 100 | } |
| 101 | |
| 102 | function formatExample(tags) { |
| 103 | return tags.filter((tag) => { |
| 104 | return tag.type === 'example' |
| 105 | }).map((tag) => { |
| 106 | return renderExample(tag.string) |
| 107 | }) |
| 108 | } |
| 109 | |
| 110 | function formatArguments(tags) { |
| 111 | const theArgs = tags.filter((tag) => { |