getMD EDITOR

getMD API extracts the content from the INK Editor and parse it into Markdown format string as a resultant value.

Syntax

getMD() : 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
29
30
31
import INKAPI from './inkapi.js'

INKAPI.ready(async () => {

  const EDITOR = INKAPI.editor;

  EDITOR.getMD().then(mdStr => {
    console.log(mdStr);
  })

  //Or use async/await

  const mdStr = await EDITOR.getMD();
  console.log(mdStr);

  /*
    Console Output:

    ---
    title : |
    'My Title'
    ---

    My Title
    ========

    My content here!...

  */

});