mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.AlienBlockNode.js
Catrope 1f01100eb9 Flag pre nodes as having significant whitespace
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
2012-11-07 12:10:58 -08:00

50 lines
1.1 KiB
JavaScript

/**
* VisualEditor data model AlienBlockNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel node for an alien block node.
*
* @class
* @constructor
* @extends {ve.dm.LeafNode}
* @param {Number} [length] Length of content data in document
* @param {Object} [attributes] Reference to map of attribute key/value pairs
*/
ve.dm.AlienBlockNode = function VeDmAlienBlockNode( length, attributes ) {
// Parent constructor
ve.dm.LeafNode.call( this, 'alienBlock', 0, attributes );
};
/* Inheritance */
ve.inheritClass( ve.dm.AlienBlockNode, ve.dm.LeafNode );
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.AlienBlockNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'hasSignificantWhitespace': false,
'childNodeTypes': [],
'parentNodeTypes': null
};
// This is a special node, no converter registration is required
ve.dm.AlienBlockNode.converters = null;
/* Registration */
ve.dm.nodeFactory.register( 'alienBlock', ve.dm.AlienBlockNode );