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.
20 lines
358 B
20 lines
358 B
'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)
|
|
}
|