KarimAziev / md-edit-org

Edit markdown in org mode.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README

md-edit-org

Indirect edit Markdown in Org Mode.

Requirements

Installation

Manual

Install emacs package edit-indirect.

Download the source code and put it wherever you like and add the directory to the load path:

(add-to-list 'load-path "/path/to/md-edit-org)

(require 'md-edit-org)

With use-package and straight

(use-package md-edit-org
  :straight (md-edit-org
             :repo "KarimAziev/md-edit-org"
             :type git
             :host github)
  :commands (md-edit-org))

Usage

Run in markdown buffer:

M-x md-edit-org RET.

When done, exit with C-c C-c.

The edited text will then converted to markdown and replace the area in the original markdown buffer. To exit without changes - C-c C-k.

Customization

md-edit-org-pandoc-executable

The path to the pandoc executable.

md-edit-org-pandoc-output-type

Markdown output type for pandoc.

About

Edit markdown in org mode.

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%