Skip to content

Commit

Permalink
fix: broken wiki on github
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Mar 24, 2024
1 parent 30136a7 commit d4c10fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions lua/neorg/core/log.lua
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,13 @@ end
local unpack = unpack or table.unpack

--- @param config neorg.log.configuration
--- @param standalone boolean
log.new = function(config, standalone)
log.new = function(config, _)
config = vim.tbl_deep_extend("force", default_config, config)
config.plugin = "neorg" -- Force the plugin name to be neorg

local outfile = string.format("%s/%s.log", vim.api.nvim_call_function("stdpath", { "data" }), config.plugin)

local obj = standalone ~= nil and log or {}
local obj = log

local levels = {}
for _, v in ipairs(config.modes) do
Expand Down
2 changes: 1 addition & 1 deletion lua/neorg/modules/core/latex/renderer/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ module.config.public = {
-- Module that renders the images. This is currently the only option
renderer = "core.integrations.image",

-- make the images larger or smaller by adjusting the scale
-- Make the images larger or smaller by adjusting the scale
scale = 1,
}

Expand Down

0 comments on commit d4c10fe

Please sign in to comment.