A Neovim plugin that converts text from Org-mode format to Markdown and copies it to the clipboard.
{
"chutipascal/org_to_md.nvim",
config = function()
require("org_to_md").setup()
end
}
use {
"chutipascal/org_to_md.nvim",
config = function()
require("org_to_md").setup()
end
}
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()
- Select text in Org-mode in visual mode (
v
). - Run the command:
:CopyOrgToMd
- The text converted to Markdown will be copied to the clipboard.
MIT License.