bomberpac/vendor/lite-plugins/plugins/titleize.lua

12 lines
254 B
Lua
Raw Permalink Normal View History

2021-02-07 21:56:19 +00:00
local core = require "core"
local command = require "core.command"
command.add("core.docview", {
["titleize:titleize"] = function()
core.active_view.doc:replace(function(text)
return text:gsub("%f[%w](%w)", string.upper)
end)
end,
})