Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(journal): toc reset month & add link indent #1165

Merged
merged 1 commit into from
Nov 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading