Skip to content

Commit df88463

Browse files
authored
Update README.md
1 parent 4216faa commit df88463

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
- Neovim >= 0.8.0
2525
- Optional: A picker plugin (`snacks.nvim`, `fzf-lua`, or `telescope.nvim`) for the template creation feature.
26-
- Optional: An external Markdown preview tool (like `glow`, `pandoc`, etc.) if using the `MarkdownPreview` command.
2726

2827
## 📦 Installation
2928

@@ -84,8 +83,7 @@ require('markdown-tools').setup({
8483
-- Keymappings for shortcuts. Set to `false` or `""` to disable.
8584
keymaps = {
8685
create_from_template = "<leader>mnt", -- New Template
87-
insert_header = "<leader>mh", -- Header (use count for level)
88-
insert_list_item = "", -- (No default, handled by list continuation)
86+
insert_header = "<leader>mh", -- Header
8987
insert_code_block = "<leader>mc", -- Code block
9088
insert_bold = "<leader>mb", -- Bold
9189
insert_italic = "<leader>mi", -- Italic
@@ -111,7 +109,6 @@ require('markdown-tools').setup({
111109
},
112110

113111
-- Command or Lua function to execute for Markdown preview.
114-
-- Example: 'glow %' (requires glow) or `function() ... end`
115112
preview_command = nil,
116113

117114
-- Apply local buffer settings for Markdown files
@@ -145,7 +142,7 @@ The following commands are available (if enabled in `config.commands`):
145142
- `:MarkdownInsertTable`: Insert a table. Prompts for rows and columns.
146143
- `:MarkdownCheckbox`: Insert a checkbox list item (`- [ ]`). In Visual mode, uses selection as text.
147144
- `:MarkdownToggleCheckbox`: Toggles the checkbox state (`[ ]` <=> `[x]`) on the current line.
148-
- `:MarkdownPreview`: Executes the configured `preview_command`.
145+
- `:MarkdownPreview`: Preview markdown.
149146

150147
### Keymaps
151148

0 commit comments

Comments
 (0)