mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
1f01100eb9
This causes the converter not to strip inner whitespace in them, and causes CE to suppress the whitespace mangling logic that is normally applied (↵ for newlines, ➞ for tabs, alternating s for spaces). Change-Id: I738a750c91a4ca4836c485e282865bb7525bf30a
49 lines
987 B
JavaScript
49 lines
987 B
JavaScript
/**
|
|
* VisualEditor data model TextNode class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel node for a document.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.dm.LeafNode}
|
|
* @param {Number} [length] Length of content data in document
|
|
*/
|
|
ve.dm.TextNode = function VeDmTextNode( length ) {
|
|
// Parent constructor
|
|
ve.dm.LeafNode.call( this, 'text', length );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.TextNode, ve.dm.LeafNode );
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* Node rules.
|
|
*
|
|
* @see ve.dm.NodeFactory
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.dm.TextNode.rules = {
|
|
'isWrapped': false,
|
|
'isContent': true,
|
|
'canContainContent': false,
|
|
'hasSignificantWhitespace': false,
|
|
'childNodeTypes': [],
|
|
'parentNodeTypes': null
|
|
};
|
|
|
|
// This is a special node, no converter registration is required
|
|
ve.dm.TextNode.converters = null;
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.nodeFactory.register( 'text', ve.dm.TextNode );
|