Hello. I need help on how to render a TemplateStyles CSS within a Lua module. This page - https://gmanetwork.fandom.com/wiki/Module:Documentation?oldid=13878 - has a code of:
-- This Module is used for making templates based in the Lua language.
-- See more details about Lua in [[w:Help:Lua]].
-- The Fandom Developer's Wiki hosts Global Lua Modules that can be imported and locally overridden.
-- The next line imports the Documentation module from the [[w:c:dev:Global Lua Modules]].
local D = require('Dev:Documentation')
-- See more details about this module at [[w:c:dev:Global_Lua_Modules/Documentation]]
-- The last line produces the output for the template
return DHow can I add TemplateStyles in a Lua module without altering the above code? Or with only the code: return require('Dev:Documentation')
Thank you!