Skip to content

Commit

Permalink
chore: autoformat with stylua
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro authored and github-actions[bot] committed Jul 16, 2024
1 parent 321c435 commit 99dd721
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lua/neorg/modules/core/esupports/metagen/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,10 @@ module.public = {
-- override with data from metadata table
data = { data[1], metadata[data[1]] }
end
local lines = whitespace .. data[1] .. delimiter .. tostring(type(data[2]) == "function" and data[2]() or data[2])
local lines = whitespace
.. data[1]
.. delimiter
.. tostring(type(data[2]) == "function" and data[2]() or data[2])
for line in ipairs(vim.split(lines, "\n")) do
table.insert(result, line)
end
Expand Down

0 comments on commit 99dd721

Please sign in to comment.