20 lines
358 B
JavaScript
20 lines
358 B
JavaScript
'use strict'
|
|
|
|
module.exports = text
|
|
|
|
// Stringify text.
|
|
// Supports named entities in `settings.encode: true` mode:
|
|
//
|
|
// ```markdown
|
|
// AT&T
|
|
// ```
|
|
//
|
|
// Supports numbered entities in `settings.encode: numbers` mode:
|
|
//
|
|
// ```markdown
|
|
// AT&T
|
|
// ```
|
|
function text(node, parent) {
|
|
return this.encode(this.escape(node.value, node, parent), node)
|
|
}
|