This commit is contained in:
12
node_modules/mdast-util-to-markdown/lib/handle/paragraph.js
generated
vendored
Normal file
12
node_modules/mdast-util-to-markdown/lib/handle/paragraph.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
module.exports = paragraph
|
||||
|
||||
var phrasing = require('../util/container-phrasing')
|
||||
|
||||
function paragraph(node, _, context) {
|
||||
var exit = context.enter('paragraph')
|
||||
var subexit = context.enter('phrasing')
|
||||
var value = phrasing(node, context, {before: '\n', after: '\n'})
|
||||
subexit()
|
||||
exit()
|
||||
return value
|
||||
}
|
||||
Reference in New Issue
Block a user