(parent)
| 3 | const smartypants = require('retext-smartypants') |
| 4 | |
| 5 | function check(parent) { |
| 6 | if (parent.tagName === 'script') return false |
| 7 | if (parent.tagName === 'style') return false |
| 8 | return true |
| 9 | } |
| 10 | |
| 11 | module.exports = function (options) { |
| 12 | const processor = retext().use(smartypants, options) |
no outgoing calls
no test coverage detected
searching dependent graphs…