markdown-to-jira icon indicating copy to clipboard operation
markdown-to-jira copied to clipboard

Comments in code are converted to headings

Open kmalfroid opened this issue 3 years ago • 0 comments

The following markdown:

# test.md

```python
# comment
import somelibrary
```

is converted to the following JIRA:

h1. test.md

{code:python}
h1. comment
import somelibrary
{code}

I expect the following result:

h1. test.md

{code:python}
# comment
import somelibrary
{code}

kmalfroid avatar Aug 04 '21 07:08 kmalfroid