We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b68084 commit 3748eccCopy full SHA for 3748ecc
lua/neorg/modules/core/summary/module.lua
@@ -183,10 +183,13 @@ module.private = {
183
local ranged_tag = node:parent()
184
for child in ranged_tag:iter_children() do
185
if child:type() == "tag_parameters" then
186
- local _, param = child:iter_children()
187
- local text = module.required["core.integrations.treesitter"].get_node_text(param)
188
- if text == "summary" then
189
- return ranged_tag
+ local param = child:child(0)
+ if param ~= nil then
+ --for param in child:iter_children() do
+ local text = module.required["core.integrations.treesitter"].get_node_text(param)
190
+ if text == "summary" then
191
+ return ranged_tag
192
+ end
193
end
194
195
0 commit comments