chore(build): auto-generate docs

This commit is contained in:
folke 2025-02-18 15:32:38 +00:00 committed by github-actions[bot]
parent 004050c435
commit 5b481ead14
2 changed files with 7 additions and 1 deletions

View file

@ -1,4 +1,4 @@
*snacks.nvim.txt* For Neovim Last change: 2025 February 17
*snacks.nvim.txt* For Neovim Last change: 2025 February 18
==============================================================================
Table of Contents *snacks.nvim-table-of-contents*

View file

@ -72,6 +72,7 @@ In case of issues, make sure to run `:checkhealth snacks`.
--- Return the absolute path or url to the image.
--- When `nil`, the path is resolved relative to the file.
---@field resolve? fun(file: string, src: string): string?
---@field magick? table<string, (string|number)[]>
{
formats = {
"png",
@ -127,6 +128,11 @@ In case of issues, make sure to run `:checkhealth snacks`.
placement = false,
},
env = {},
magick = {
default = { "{src}[0]", "-scale", "1920x1080>" },
math = { "-density", 600, "{src}[0]", "-trim" },
pdf = { "-density", 300, "{src}[0]", "-background", "white", "-alpha", "remove", "-trim" },
},
}
```