getText EDITOR

getText API extracts the content from the INK Editor and parse it into plain text string as a resultant value.

Syntax

getText() : Promise<String>

Example

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import INKAPI from './inkapi.js'

INKAPI.ready(async () => {

  const EDITOR = INKAPI.editor;

  EDITOR.getText().then(text => {

    console.log(text);

  })

  //Or use async/await

  const text = await EDITOR.getText();
  console.log(text);

  /*
    Console Output:

    My Title

    My content here!...

  */


});