formatMarkdownLinkToLink top-level property

CharacterShortcutEvent formatMarkdownLinkToLink
final

format the markdown link syntax to hyperlink

Implementation

final CharacterShortcutEvent formatMarkdownLinkToLink = CharacterShortcutEvent(
  key: 'format the text surrounded by double asterisks to bold',
  character: ')',
  handler: (editorState) async => handleFormatMarkdownLinkToLink(
    editorState: editorState,
  ),
);