A Neovim plugin that displays a live outline of your markdown files in a split window.


Simple installation
return {
'tttol/md-outline.nvim',
}
To configure options
return {
'tttol/md-outline.nvim',
config = function()
require('md-outline').setup({
auto_open = false -- default: true
})
end
}
:MdoOpen - Open the markdown outline in a split window:MdoClose - Close the outline windowrequire('md-outline').setup({
auto_open = true -- Automatically open outline for markdown files (default: true)
})
auto_open (boolean, default: true): Enable/disable automatic outline opening when entering markdown filesWhen you open a markdown file:
auto_open is enabled)#, ##, ###, etc.) are extracted and displayed with proper indentationMIT