My first neovim plugin. Its basically just a pandoc wrapper to convert docs in markdown into xdocs (word) and textile (redmine).
- pandoc
return {
"StBreuer/docs_dispenser.nvim",
cmd = "DispenseDoc",
-- Optional hotkeys
-- keys = {
-- { "<leader>dd", "<cmd>DocsDispense<CR>", desc = "Dispense Document" },
-- },
opts = {
-- Possible future configs
-- output_dir = nil, -- nil means same directory as the markdown file
-- open_on_finish = false, -- whether to open the docx automatically
-- pandoc_path = "pandoc", -- allow custom path for your no-admin windows setup later
},
-- Use (_, opts) because lazy.nvim passes the plugin table as the first argument
config = function(_, opts)
require("docs_dispenser").setup(opts)
end,
}