All Projects → stig → Ox Jira.el

stig / Ox Jira.el

Org-mode export backend for JIRA markup

Projects that are alternatives of or similar to Ox Jira.el

Org Tfl
Transport for London meets Emacs Orgmode
Stars: ✭ 55 (-37.5%)
Mutual labels:  emacs, org-mode
Emagicians Starter Kit
🐰 My own take on an Emacs Starter Kit, with Secret Alien Org Mode Superpowers. -|-+-|-
Stars: ✭ 85 (-3.41%)
Mutual labels:  emacs, org-mode
Emacs Document
translate emacs documents to Chinese for convenient reference
Stars: ✭ 1,085 (+1132.95%)
Mutual labels:  emacs, org-mode
Organic
Outliner, organizer and notes management app.
Stars: ✭ 34 (-61.36%)
Mutual labels:  emacs, org-mode
Dmacs
Emacs Literate Configuration with borg
Stars: ✭ 74 (-15.91%)
Mutual labels:  emacs, org-mode
Org Evil
Evil extensions for Org-mode.
Stars: ✭ 51 (-42.05%)
Mutual labels:  emacs, org-mode
Vscode Org Mode
Emacs Org Mode for Visual Studio Code
Stars: ✭ 1,096 (+1145.45%)
Mutual labels:  emacs, org-mode
Org Super Agenda
Supercharge your Org daily/weekly agenda by grouping items
Stars: ✭ 829 (+842.05%)
Mutual labels:  emacs, org-mode
Org Wild Notifier.el
Alert notifications for org-agenda
Stars: ✭ 84 (-4.55%)
Mutual labels:  emacs, org-mode
Org Sticky Header
Show off-screen Org heading at top of window
Stars: ✭ 68 (-22.73%)
Mutual labels:  emacs, org-mode
Org Reverse Datetree
Reversed date trees for Emacs Org mode
Stars: ✭ 33 (-62.5%)
Mutual labels:  emacs, org-mode
Org Zettelkasten
An opinionated setup for managing large collections of interlinked org files.
Stars: ✭ 77 (-12.5%)
Mutual labels:  emacs, org-mode
Coldnew Emacs
coldnew's emacs config
Stars: ✭ 32 (-63.64%)
Mutual labels:  emacs, org-mode
Org Make Toc
Automatic tables of contents for Org files
Stars: ✭ 53 (-39.77%)
Mutual labels:  emacs, org-mode
Org Treescope.el
Provides a time and priority based sparse tree interaction mode
Stars: ✭ 25 (-71.59%)
Mutual labels:  emacs, org-mode
.dot Org Files
Dotfiles, Emacs + Org-mode with babel and Literate programming.
Stars: ✭ 57 (-35.23%)
Mutual labels:  emacs, org-mode
Memacs
What did I do on February 14th 2007? Visualize your (digital) life in Org-mode
Stars: ✭ 711 (+707.95%)
Mutual labels:  emacs, org-mode
Org Ql
An Org-mode query language, including search commands and saved views
Stars: ✭ 721 (+719.32%)
Mutual labels:  emacs, org-mode
Org Web
org-mode on the web, built with React, optimized for mobile, synced with Dropbox and Google Drive
Stars: ✭ 1,133 (+1187.5%)
Mutual labels:  emacs, org-mode
Org Kanban
Simple approach to kanban with emacs' org-mode
Stars: ✭ 74 (-15.91%)
Mutual labels:  emacs, org-mode

#+TITLE: JIRA Backend for Org Export Engine #+AUTHOR: Stig Brautaset

[[http://melpa.org/#/ox-jira][file:http://melpa.org/packages/ox-jira-badge.svg]] [[https://travis-ci.org/stig/ox-jira.el][file:https://travis-ci.org/stig/ox-jira.el.svg?branch=master]]

  • Introduction

    This module plugs into the regular Org Export Engine and transforms Org files to JIRA markup for pasting into JIRA tickets & comments.

    My last three jobs I've had to use JIRA, and had to deal with its (to me) incredibly unintuitive markup format. Having discovered---and fallen in love with---Org mode I now find myself writing everything in Org and exporting to various other formats (html, markdown, plain text) but I haven't been able to find a way to export to JIRA. So I am attempting to write one, and learn about Emacs package development at the same time.

  • Usage

    In an Org buffer, hit =C-c C-e j j= to bring up =Org Export Dispatcher= and export it as a JIRA buffer. You can then use =C-x h= to mark the whole buffer, then =M-w= to save it to the kill ring (and global pasteboard) for pasting into JIRA issues.

    Alternatively, you can export to the kill ring automatically for interactive exports by setting this in your =.emacs.el= file:

    #+BEGIN_SRC emacs-lisp (setq org-export-copy-to-kill-ring 'if-interactive) #+END_SRC

  • Installation

    This library is on Melpa. You can install it like this:

    #+BEGIN_EXAMPLE M-x package-install RET ox-jira RET #+END_EXAMPLE

  • Manual installation

    If you don't want to install from Melpa, simply clone this repo and do:

    #+BEGIN_EXAMPLE M-x load-file RET ox-jira.el RET #+END_EXAMPLE

  • Maturity

    It does what I want, and it has tests for that. YMMV.

  • License

    Copyright (C) 2016 Stig Brautaset

    This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

  • Contributing

    I'm happy to consider contributions. Since this is my first attempt at an Emacs package I've bound to have made lots of mistakes. Help me correct them, and keep the pull requests coming!

    I am more likely to merge code contributions if they come with tests. However, code contributions are not everything. Opening an issue with a reproducible test case, like "I expected this but got this" is also a valuable contribution.

    Running the =./run-tests.sh= script should run all the tests automatically.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].