* refactor(config): replace array preset syntax with preset_name = true Problem: setup() mixed array entries (preset names) and hash entries (custom providers keyed by filetype), requiring verbose vim.tbl_deep_extend boilerplate to override presets. Solution: unify under a single key=value model. Keys are preset names or filetypes; true registers the preset as-is, a table deep-merges with the matching preset (or registers a custom provider if no preset matches), and false is a no-op. Array entries are dropped. Also adds -f gfm to presets.github args so pandoc parses input as GFM. * ci: format * fix(presets): parenthesize gsub output to suppress redundant-return-value
76 lines
1.6 KiB
Lua
76 lines
1.6 KiB
Lua
local M = {}
|
|
|
|
---@type preview.ProviderConfig
|
|
M.typst = {
|
|
ft = 'typst',
|
|
cmd = { 'typst', 'compile' },
|
|
args = function(ctx)
|
|
return { ctx.file }
|
|
end,
|
|
output = function(ctx)
|
|
return (ctx.file:gsub('%.typ$', '.pdf'))
|
|
end,
|
|
open = { 'xdg-open' },
|
|
}
|
|
|
|
---@type preview.ProviderConfig
|
|
M.latex = {
|
|
ft = 'tex',
|
|
cmd = { 'latexmk' },
|
|
args = function(ctx)
|
|
return { '-pdf', '-interaction=nonstopmode', ctx.file }
|
|
end,
|
|
output = function(ctx)
|
|
return (ctx.file:gsub('%.tex$', '.pdf'))
|
|
end,
|
|
clean = function(ctx)
|
|
return { 'latexmk', '-c', ctx.file }
|
|
end,
|
|
open = { 'xdg-open' },
|
|
}
|
|
|
|
---@type preview.ProviderConfig
|
|
M.markdown = {
|
|
ft = 'markdown',
|
|
cmd = { 'pandoc' },
|
|
args = function(ctx)
|
|
local output = ctx.file:gsub('%.md$', '.html')
|
|
return { ctx.file, '-s', '--embed-resources', '-o', output }
|
|
end,
|
|
output = function(ctx)
|
|
return (ctx.file:gsub('%.md$', '.html'))
|
|
end,
|
|
clean = function(ctx)
|
|
return { 'rm', '-f', (ctx.file:gsub('%.md$', '.html')) }
|
|
end,
|
|
open = { 'xdg-open' },
|
|
}
|
|
|
|
---@type preview.ProviderConfig
|
|
M.github = {
|
|
ft = 'markdown',
|
|
cmd = { 'pandoc' },
|
|
args = function(ctx)
|
|
local output = ctx.file:gsub('%.md$', '.html')
|
|
return {
|
|
'-f',
|
|
'gfm',
|
|
ctx.file,
|
|
'-s',
|
|
'--embed-resources',
|
|
'--css',
|
|
'https://cdn.jsdelivr.net/gh/pixelbrackets/gfm-stylesheet@master/dist/gfm.css',
|
|
'-o',
|
|
output,
|
|
}
|
|
end,
|
|
output = function(ctx)
|
|
return (ctx.file:gsub('%.md$', '.html'))
|
|
end,
|
|
clean = function(ctx)
|
|
return { 'rm', '-f', (ctx.file:gsub('%.md$', '.html')) }
|
|
end,
|
|
open = { 'xdg-open' },
|
|
}
|
|
|
|
return M
|