Release v1.0.1 (What’s new?).
Welcome to atlas_doc_parser Documentation¶
Turn your Confluence pages and Jira issues into AI-ready Markdown.
Confluence and Jira store rich text as Atlassian Document Format (ADF) - a complex JSON structure that LLMs can’t directly consume. This library solves that:
from atlas_doc_parser.api import NodeDoc
# Parse ADF JSON from Confluence/Jira API
doc = NodeDoc.from_dict(adf_json)
# Convert to clean Markdown
markdown = doc.to_markdown()
# Feed to your AI
response = llm.chat(f"Summarize this: {markdown}")
Now your team’s knowledge in Confluence and Jira becomes training data, context, or input for any AI workflow.
Install¶
atlas_doc_parser is released on PyPI, so all you need is to:
$ pip install atlas-doc-parser
To upgrade to latest version:
$ pip install --upgrade atlas-doc-parser