Played around with the code a bit, and came up with a couple of edits. If you like them feel free to include those you wish.
To summarize:
jql queries often needs " included, so I added a simple fix where I replace the " entries with " before querying. Another solution could have been to use ' instead of " to encapsule the entire query, or alternatively maybe implement something like https://github.com/jskrnbindra/html-escape-unescape I don't think my solution here is the most elegant, but it works. I added usage of it to the example query so the user can more easily figure it out.
when I edit the note in a wysiwyg editor, the html tags are all lowercased, so e.g. becomes . HTML tags should be case insensitive, so I fixed the regexp to reflect that. I recommend this edit.
I added DueDate and Assignee as optional items to display. We use these two fields quite a lot ourselves, so I find it useful to include.
Hi,
Played around with the code a bit, and came up with a couple of edits. If you like them feel free to include those you wish.
To summarize:
"
entries with " before querying. Another solution could have been to use ' instead of " to encapsule the entire query, or alternatively maybe implement something like https://github.com/jskrnbindra/html-escape-unescape I don't think my solution here is the most elegant, but it works. I added usage of it to the example query so the user can more easily figure it out.