mediawiki-extensions-Visual.../modules/ve2/dm/nodes/ve.dm.PreformattedNode.js

56 lines
1.1 KiB
JavaScript
Raw Normal View History

/**
* DataModel node for a preformatted.
*
* @class
* @constructor
* @extends {ve.dm.BranchNode}
* @param {ve.dm.LeafNode[]} [children] Child nodes to attach
* @param {Object} [attributes] Reference to map of attribute key/value pairs
*/
ve.dm.PreformattedNode = function( children, attributes ) {
// Inheritance
ve.dm.BranchNode.call( this, 'preformatted', children, attributes );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.PreformattedNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': true,
'childNodeTypes': null,
'parentNodeTypes': null
};
/**
* Node converters.
*
* @see {ve.dm.Converter}
* @static
* @member
*/
ve.dm.PreformattedNode.converters = {
'tags': 'pre',
'toHtml': function( type, element ) {
return ve.dm.createHtmlElement( 'pre' );
},
'toData': function( tag, element ) {
return { 'type': 'preformatted' };
}
};
/* Registration */
ve.dm.nodeFactory.register( 'preformatted', ve.dm.PreformattedNode );
/* Inheritance */
ve.extendClass( ve.dm.PreformattedNode, ve.dm.BranchNode );