import { build } from "annotatedtext-markdown";const text = "# Hello World\n\nThis is a paragraph.";const annotatedtext = build(text);const ltdata = JSON.stringify(annotatedtext); Copy
import { build } from "annotatedtext-markdown";const text = "# Hello World\n\nThis is a paragraph.";const annotatedtext = build(text);const ltdata = JSON.stringify(annotatedtext);
This module provides a function to build an annotated text object from markdown text.
Example
Description
This module provides a function to build an annotated text object from markdown text.