Translate Markdown (Github) into Atlassian Document Format (ADF)
npm install md-to-adfTransform Github Markdown text into Atlassian Document Format (ADF)*





\* ADF is JIRA and Confluence to describe complex formatted text.
While writing a Github Action to push Github Issues into JIRA Subtask, we ended up stuck unable to pass complex formatting
from the issue into JIRA, which rendered the interest of the tools much lower.
That's why we embarked on translating Github Markdown into a syntaxically correct ADF document.
```
npm install md-to-adf
javascript
const fnTranslate = require( 'md-to-adf' )
`
* As a module
`javascript
import fnTranslate from 'md-to-adf'
`
$3
`javascript
const translatedADF = fnTranslate( myJIRAFormattedTextContent )
``// * JSDoc