mediawiki-extensions-Visual.../modules/ve-mw/ce/nodes/ve.ce.MWPreNode.js
Bartosz Dziewoński 49f603c703 Update <pre> support for Parsoid changes
After 79ccfb9372cb57afa569036ef39ead13abfba673, MediaWiki's `<pre>`
tags get rendered as `<pre typeof="mw:Extension/pre">` in Parsoid HTML.
MediaWiki's indent-pre syntax (block indented by a single space) is
still rendered as `<pre>` in Parsoid HTML, however.

Indent-pre is still handled by MWPreformattedNode (no changes).
Introducing MWPreNode, which will handle `<pre>` extension tags,
and MWPreDialog to change its contents (and allow converting
to MWPreformattedNode).

Pieces copied from MWGalleryNode, MWLinkNodeInspector, CommentInspector.

Possible future improvements:
* Add a specific icon for MWPreContextItem
* Avoid API roundtrips for rendering (but rendering wikitext <pre>
  is not as simple as it looks)
* Consider a way to insert these other than '<pre' sequence

Bug: T159900
Change-Id: I5bc4ea6e5d893736f65ef0dd43b08c18cb1a1e85
2017-03-14 14:08:50 -07:00

38 lines
831 B
JavaScript

/*!
* VisualEditor ContentEditable MWPreNode class.
*
* @copyright 2011-2017 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable MediaWiki pre node.
*
* @class
* @extends ve.ce.MWBlockExtensionNode
*
* @constructor
* @param {ve.dm.MWPreNode} model Model to observe
* @param {Object} [config] Configuration options
*/
ve.ce.MWPreNode = function VeCeMWPreNode() {
// Parent constructor
ve.ce.MWPreNode.super.apply( this, arguments );
};
/* Inheritance */
OO.inheritClass( ve.ce.MWPreNode, ve.ce.MWBlockExtensionNode );
/* Static Properties */
ve.ce.MWPreNode.static.name = 'mwPre';
ve.ce.MWPreNode.static.tagName = 'pre';
ve.ce.MWPreNode.static.primaryCommandName = 'pre';
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWPreNode );