mediawiki-extensions-Visual.../modules/ve-mw/dm/nodes/ve.dm.MWPreformattedNode.js
Ed Sanders d42a0772bb Move verbose copyright message to AUTHORS.txt
Avoids having to update the date in every file every year,
which we stopped doing.

Change-Id: I7bf7aa0937eef911e00772470091753a7b06fd3d
2023-12-01 16:07:39 +00:00

37 lines
959 B
JavaScript

/*!
* VisualEditor DataModel MWPreformattedNode class.
*
* @copyright See AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel MediaWiki preformatted node.
*
* @class
* @extends ve.dm.PreformattedNode
*
* @constructor
* @param {Object} [element] Reference to element in linear model
* @param {ve.dm.Node[]} [children]
*/
ve.dm.MWPreformattedNode = function VeDmMWPreformattedNode() {
// Parent constructor
ve.dm.MWPreformattedNode.super.apply( this, arguments );
};
/* Inheritance */
OO.inheritClass( ve.dm.MWPreformattedNode, ve.dm.PreformattedNode );
/* Static Properties */
ve.dm.MWPreformattedNode.static.name = 'mwPreformatted';
// Indent-pre in wikitext only works in some contexts, it's impossible e.g. in list items
ve.dm.MWPreformattedNode.static.suggestedParentNodeTypes = [ 'document', 'tableCell', 'div', 'section' ];
/* Registration */
ve.dm.modelRegistry.register( ve.dm.MWPreformattedNode );