(string: string, config = {})
| 1 | import Markdoc from '../../index'; |
| 2 | |
| 3 | function validate(string: string, config = {}) { |
| 4 | return Markdoc.validate(Markdoc.parse(string), config); |
| 5 | } |
| 6 | |
| 7 | describe('table transform validation', function () { |
| 8 | it('produces an error for non-row content at the row level of a table', function () { |