UNPKG

@aashari/mcp-server-atlassian-jira

Version:

Node.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities directly into Jira project management and issue tracki

25 lines (24 loc) 804 B
/** * Converts Markdown to Atlassian Document Format (ADF) */ import { AdfDocument } from './adf-types.util.js'; /** * Convert Markdown text to an Atlassian Document Format (ADF) document * Supports a wide range of Markdown formatting: * - Headings (# text) converted to proper ADF heading nodes with levels 1-6 * - Bold (**text**) * - Italic (*text*) * - Code (`text`) * - Strikethrough (~~text~~) * - Links ([text](url)) * - Unordered lists (- item or * item) * - Ordered lists (1. item) * - Blockquotes (> text) * - Code blocks (```language\ncode\n```) * - Horizontal rules (---, ***, ___) * - Tables (| Column | Column |) * * @param markdown - Markdown text to convert to ADF * @returns ADF document object */ export declare function markdownToAdf(markdown: string): AdfDocument;