123456789101112131415161718192021 |
- module.exports = strong
- strong.peek = strongPeek
- var checkStrong = require('../util/check-strong')
- var phrasing = require('../util/container-phrasing')
- function strong(node, _, context) {
- var marker = checkStrong(context)
- var exit = context.enter('strong')
- var value = phrasing(node, context, {before: marker, after: marker})
- exit()
- return marker + marker + value + marker + marker
- }
- function strongPeek(node, _, context) {
- return context.options.strong || '*'
- }
|