You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
308 B
12 lines
308 B
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 |
|
}
|
|
|