File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- *render-markdown.txt* For 0.9.5 Last change: 2024 May 01
1
+ *render-markdown.txt* For 0.9.5 Last change: 2024 May 03
2
2
3
3
==============================================================================
4
4
Table of Contents *render-markdown-table-of-contents*
@@ -76,6 +76,8 @@ modified by the user.
76
76
77
77
>lua
78
78
require('render-markdown').setup({
79
+ -- Configure whether Markdown should be rendered by default or not
80
+ start_enabled = true,
79
81
-- Capture groups that get pulled from markdown
80
82
markdown_query = [[
81
83
(atx_heading [
Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ function M.setup(opts)
130
130
latex = ' @markup.math' ,
131
131
quote = ' @markup.quote' ,
132
132
},
133
- enabled = true ,
134
133
}
135
134
state .config = vim .tbl_deep_extend (' force' , default_config , opts or {})
136
135
state .enabled = state .config .start_enabled
@@ -172,4 +171,3 @@ M.toggle = function()
172
171
end
173
172
174
173
return M
175
-
You can’t perform that action at this time.
0 commit comments