Releases: OpusCapita/react-markdown
Releases · OpusCapita/react-markdown
2.3.13
See changelog and completed issues
2.3.12
See changelog and completed issues
2.3.12-alpha
See changelog and completed issues
2.3.11
See changelog and completed issues
2.3.10
See changelog and completed issues
2.3.10-alpha
See changelog and completed issues
2.3.9
See changelog and completed issues
2.3.8
See changelog and completed issues
2.3.7
See changelog and completed issues
API changes
MarkdownInput
exposes function insertAtCursorPosition(text)
which inserts text
into current cursor position in editor.
It can be accessed via ref
on mounted component, e.g. <MArkdownInput ref={el => (this.mdRef = el)}>
and in code this.mdRef.insertAtCursorPosition('some text')
will insert some text
into current cursor position in editor.