(token)
| 56 | } |
| 57 | |
| 58 | function getTableData(token) { |
| 59 | if (!token.text && token.type === 'table') { |
| 60 | token.cells.unshift(token.header); |
| 61 | token.text = token.cells |
| 62 | .map(function (rows) { |
| 63 | return rows.join(' | '); |
| 64 | }) |
| 65 | .join(' |\n '); |
| 66 | } |
| 67 | return token.text; |
| 68 | } |
| 69 | |
| 70 | function getListData(token) { |
| 71 | if (!token.text && token.type === 'list') { |
no outgoing calls
no test coverage detected
searching dependent graphs…