mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-03 18:36:20 +00:00
924c58a893
Functionality is now provided by Parsoid's scrubWikitext.
This reverts commit 884f301aa0
.
Change-Id: I19f340a1c2d9718bfa05c6667042488f3a589719
36 lines
823 B
JavaScript
36 lines
823 B
JavaScript
/*!
|
|
* VisualEditor DataModel MWHeadingNode class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel MediaWiki heading node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.HeadingNode
|
|
*
|
|
* @constructor
|
|
* @param {Object} [element] Reference to element in linear model
|
|
* @param {ve.dm.Node[]} [children]
|
|
*/
|
|
ve.dm.MWHeadingNode = function VeDmMWHeadingNode() {
|
|
// Parent constructor
|
|
ve.dm.HeadingNode.apply( this, arguments );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.dm.MWHeadingNode, ve.dm.HeadingNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.MWHeadingNode.static.name = 'mwHeading';
|
|
|
|
ve.dm.MWHeadingNode.static.suggestedParentNodeTypes = [ 'document', 'tableCell' ];
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWHeadingNode );
|