mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 06:46:26 +00:00
Merge changes I2c9f102f,I55aa649b
* changes: Match named entities with up to eight chars Insert separation between adjacent pres
This commit is contained in:
commit
5c12dae254
|
@ -191,7 +191,7 @@ WSP.escapeWikiText = function ( state, text ) {
|
|||
// modified for now.
|
||||
outTexts.push( token.dataAttribs.src
|
||||
// escape ampersands in entity text
|
||||
.replace(/&(#?[0-9a-zA-Z]{2,6};)/, '&$1') );
|
||||
.replace(/&(#?[0-9a-zA-Z]{2,8};)/, '&$1') );
|
||||
// skip generated tokens
|
||||
for ( ; i < l; i ++) {
|
||||
var tk = tokens[i];
|
||||
|
@ -652,6 +652,7 @@ WSP.tagHandlers = {
|
|||
pre: {
|
||||
start: {
|
||||
startsNewline: true,
|
||||
pairSepNLCount: 2,
|
||||
handle: function( state, token ) {
|
||||
state.inIndentPre = true;
|
||||
state.textHandler = function( t ) {
|
||||
|
|
Loading…
Reference in a new issue