--- Global library provisions.
-- @module globals
-- @alias _G
--- Penlight on-demand loader.
-- The Lua language adopts a "no batteries included" philosophy by providing a minimal standard library. Penlight is
-- a widely used set libraries for making it easier to work with common tasks. Loading SILE implies that the Penlight
-- on-demand module loader is available, allowing any Penlight functions to be accessed using the `pl` prefix. Consult
-- the [Penlight documentation](https://lunarmodules.github.io/Penlight/) for specifics of the utilities available.
_G. = require
--- UTF-8 string library.
-- The standard `string` modules in LuaJIT as well as PUC Lua 5.1 and 5.2 only handle strings as bytes. Lua 5.3+ has a
-- UTF-8 safe `string` module but its feature set is underwhelming. This adds more functions and levels the playing
-- field no matter which Lua VM is being used. See [luautf8 docs](https://github.com/starwing/luautf8) for details.
_G. = require
--- Fluent localization library.
-- For handling messages in various languages SILE provides an implementation of
-- [Project Fluent](https://projectfluent.org/)'s localization system (originally developed by Mozilla for use in
-- Firefox). This global is an instantiated interface to [fluent-lua](https://github.com/alerque/fluent-lua) pre-loaded
-- with resources for all the languages and regions SILE has support for.
_G. = require
-- For developer testing only, usually in CI
if os.