Skip to content

Commit

Permalink
fix(journal): toc reset month & add link indent (#1165)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfiehub authored Nov 18, 2023
1 parent ed25267 commit 16af444
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lua/neorg/modules/core/journal/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ module.examples = {
-- Don't print the year if it hasn't changed
if not current_year or current_year < entry[1] then
current_year = entry[1]
current_month = nil
current_quarter = nil
table.insert(output, "* " .. current_year)
end

Expand Down Expand Up @@ -73,7 +75,7 @@ module.examples = {
end

-- Prints the file link
table.insert(output, entry[4] .. string.format("[%s]", entry[5]))
table.insert(output, " " .. entry[4] .. string.format("[%s]", entry[5]))
end

return output
Expand Down Expand Up @@ -348,6 +350,7 @@ module.private = {
-- Don't print the year and month if they haven't changed
if not current_year or current_year < entry[1] then
current_year = entry[1]
current_month = nil
table.insert(output, "* " .. current_year)
end
if not current_month or current_month < entry[2] then
Expand All @@ -356,7 +359,7 @@ module.private = {
end

-- Prints the file link
table.insert(output, entry[4] .. string.format("[%s]", entry[5]))
table.insert(output, " " .. entry[4] .. string.format("[%s]", entry[5]))
end

return output
Expand Down

0 comments on commit 16af444

Please sign in to comment.