Skip to content

chutipascal/org_to_md.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

org_to_md.nvim

A Neovim plugin that converts text from Org-mode format to Markdown and copies it to the clipboard.

Installation

Using Lazy.nvim

{
    "chutipascal/org_to_md.nvim",
    config = function()
        require("org_to_md").setup()
    end
}

Using Packer.nvim

use {
    "chutipascal/org_to_md.nvim",
    config = function()
        require("org_to_md").setup()
    end
}

Manual Installation

git clone https://github.com/chutipascal/org_to_md.nvim ~/.config/nvim/lua/org_to_md

Then add to your init.lua:

require("org_to_md").setup()

Usage

  1. Select text in Org-mode in visual mode (v).
  2. Run the command:
    :CopyOrgToMd
    
  3. The text converted to Markdown will be copied to the clipboard.

License

MIT License.

About

Copy yank org source code to mark down

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages