Skip to main content

Getting started

Installation

npm i @tsei/jira

or

yarn add @tsei/jira

Install from CDN or static hosting

The following code also works in vscode markdown preview

<pre id="id">
# Todo
- [x] Task 0
# In Progress
- [x] Task 1
# Review
- [x] Task 2
# Done
- [x] Task 3
</pre>
<script type="module">
import createJIRA from 'https://esm.sh/@tsei/jira@0.2.0'
window.addEventListener('DOMContentLoaded', createJIRA('id'))
</script>