Skip to content

Commit

Permalink
docs(readme): fix desc of note formatting func
Browse files Browse the repository at this point in the history
  • Loading branch information
jghauser committed Jun 4, 2024
1 parent c0b9f68 commit 74d913b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ init_filetypes = { "markdown", "norg", "yaml" },
-- Define all the lines to be inserted
local lines = {
"---",
"title: Notes -- " .. table.concat(title),
'title: "Notes -- ' .. table.concat(title) .. '"',
"---",
"",
}
Expand Down
2 changes: 1 addition & 1 deletion lua/papis/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ local default_config = {
end
local lines = {
"---",
[[title: "Notes -- ]] .. table.concat(title) .. [["]],
'title: "Notes -- ' .. table.concat(title) .. '"',
"---",
"",
}
Expand Down

0 comments on commit 74d913b

Please sign in to comment.