adf2markdown
v1.2.0
Published
Convert Atlassian ADF (Jira/Confluence) to clean Markdown — a lightweight JS library designed to make Jira tickets readable and understandable by LLMs.
Readme
adf2markdown
Convert Atlassian ADF (Jira/Confluence) to clean Markdown — a lightweight JS library designed to make Jira tickets readable and understandable by LLMs.
Installation
npm install adf2markdownUsage
import { adf2markdown } from "adf2markdown";
const adf = {
version: 1,
type: "doc",
content: [
{
type: "paragraph",
content: [{ text: "This is a sample ADF document.", type: "text" }],
},
],
};
const markdown = adf2markdown(adf);
console.log(markdown); // "This is a sample ADF document."