MediaWiki

Gadget-ve-linebreak.js

From Dogcraft Wiki

No edit summary
mNo edit summary
Line 31: Line 31:
);
);


ve.ui.sequenceRegistry.register([
ve.ui.sequenceRegistry.register(
new ve.ui.Sequence(
new ve.ui.Sequence(
'br', // Sequence name
'br', // Sequence name
Line 38: Line 38:
4 // Number of characters to delete after the sequence is matched:
4 // Number of characters to delete after the sequence is matched:
  // in this case, remove the entire 'kitten'
  // in this case, remove the entire 'kitten'
),
)
);
ve.ui.sequenceRegistry.register(
new ve.ui.Sequence(
new ve.ui.Sequence(
'br /', // Sequence name
'br /', // Sequence name
Line 45: Line 47:
6 // Number of characters to delete after the sequence is matched:
6 // Number of characters to delete after the sequence is matched:
  // in this case, remove the entire 'kitten'
  // in this case, remove the entire 'kitten'
),
)
);
ve.ui.sequenceRegistry.register(
new ve.ui.Sequence(
new ve.ui.Sequence(
'br/', // Sequence name
'br/', // Sequence name
Line 52: Line 56:
5 // Number of characters to delete after the sequence is matched:
5 // Number of characters to delete after the sequence is matched:
  // in this case, remove the entire 'kitten'
  // in this case, remove the entire 'kitten'
),
)
);
ve.ui.sequenceRegistry.register(
new ve.ui.Sequence(
new ve.ui.Sequence(
'\n', // Sequence name
'\n', // Sequence name
Line 60: Line 66:
  // in this case, remove the entire 'kitten'
  // in this case, remove the entire 'kitten'
)
)
]);
);

Revision as of 15:19, 4 November 2022

ve.ui.commandRegistry.register(
	new ve.ui.Command(
		// Command name
		'myBreak',
		// Type and name of the action to execute
		'content', 'insert', // Calls the ve.ui.ContentAction#insert method
		{
			// Extra arguments for the action
			args: [
				// Content to insert
				[
					{ type: 'break' },
					{ type: '/break' }
				],
				// Annotate content to match surrounding annotations?
				true,
				// Move cursor to after the new content? (otherwise - select it)
				true
			],
			supportedSelections: [ 'linear' ]
		}
	)
);

ve.ui.triggerRegistry.register(
	'myBreak', // Command name
	{
		mac: new ve.ui.Trigger( 'cmd+shift+n' ),
		pc: new ve.ui.Trigger( 'ctrl+shift+n' )
	}
);

ve.ui.sequenceRegistry.register(
	new ve.ui.Sequence(
		'br', // Sequence name
		'myBreak', // Command name
		'<br>', // Text to detect
		4 // Number of characters to delete after the sequence is matched:
		  // in this case, remove the entire 'kitten'
	)
);
ve.ui.sequenceRegistry.register(
	new ve.ui.Sequence(
		'br /', // Sequence name
		'myBreak', // Command name
		'<br />', // Text to detect
		6 // Number of characters to delete after the sequence is matched:
		  // in this case, remove the entire 'kitten'
	)
);
ve.ui.sequenceRegistry.register(
	new ve.ui.Sequence(
		'br/', // Sequence name
		'myBreak', // Command name
		'<br/>', // Text to detect
		5 // Number of characters to delete after the sequence is matched:
		  // in this case, remove the entire 'kitten'
	)
);
ve.ui.sequenceRegistry.register(
	new ve.ui.Sequence(
		'\n', // Sequence name
		'myBreak', // Command name
		'\n', // Text to detect
		2 // Number of characters to delete after the sequence is matched:
		  // in this case, remove the entire 'kitten'
	)
);
This page was last modified on 4 November 2022, at 15:19. (18 months ago)
Background Valentine's Day Event 2024 by TheWhiteTigerNL