From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stig Brautaset Subject: ANN: ox-jira -- JIRA Backend for Org Export Engine Date: Tue, 12 Apr 2016 23:15:48 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42823) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aq6fJ-0000eS-Qy for emacs-orgmode@gnu.org; Tue, 12 Apr 2016 18:20:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aq6fG-0000yU-LJ for emacs-orgmode@gnu.org; Tue, 12 Apr 2016 18:20:09 -0400 Received: from plane.gmane.org ([80.91.229.3]:46948) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aq6fG-0000x6-G1 for emacs-orgmode@gnu.org; Tue, 12 Apr 2016 18:20:06 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aq6fF-0002bX-Cr for emacs-orgmode@gnu.org; Wed, 13 Apr 2016 00:20:05 +0200 Received: from 173.150.114.87.dyn.plus.net ([87.114.150.173]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 13 Apr 2016 00:20:05 +0200 Received: from stig by 173.150.114.87.dyn.plus.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 13 Apr 2016 00:20:05 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org I wrote a simplistic JIRA backend for Org Export so that I can draft JIRA tickets & comments in Org mode and export to JIRA markup. Credits: most of this was produce by means of cargo-cult programming, using ox-latex and ox-ascii as inspiration. Code: https://github.com/stig/ox-jira.el It is available from melpa: M-x package-install RET ox-jira RET What (sort of) works: - Internal linebreaks in paragraphs are removed, so that JIRA reflows text properly - Simple text transforms: =code=, *bold*, /emphasis/, _underline_, sub^{script}, super^{script} - Simple lists, both ordered, unordered, and nested - Checkboxes & statistics cookies - Tables - Source code & example blocks - Fixed-width - Footnotes More details in the test cases: https://github.com/stig/ox-jira.el/blob/master/test/ox-jira-test.org A minor plea for help: I noticed recently that list items with multiple paragraphs does not work. e.g. - fi fo - fa - fum Also, probably by extension, lists with a blank line between items does not work, e.g. - fi - fo - fa I first thought I could just hack it by wrapping list item in an invisible panel, but that does not appear to work for nested lists. Any ideas / advice for how to deal with this? Additionaly, [fn:: inline footnotes] does not work. Patches welcome! (I have no idea where to start.) Stig