You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- macroPrefix = prefix -- [Optional] String to prepend to macro names. (Default: "")
3235
+
-- macroSuffix = suffix -- [Optional] String to append to macro names. (Default: "")
3236
+
--
3220
3237
-- onInsert = function( name ) -- [Optional] Called for each @insert"name" instruction. It's expected to return a Lua code string. By default 'name' is a path to a file to be inserted.
3221
3238
-- onBeforeMeta = function( ) -- [Optional] Called before the metaprogram runs.
3222
3239
-- onAfterMeta = function( luaString ) -- [Optional] Here you can modify and return the Lua code before it's written to 'pathOut'.
@@ -3243,6 +3260,9 @@ local pp = {
3243
3260
-- fastStrings = boolean -- [Optional] Force fast serialization of string values. (Non-ASCII characters will look ugly.) (Default: false)
-- macroPrefix = prefix -- [Optional] String to prepend to macro names. (Default: "")
3264
+
-- macroSuffix = suffix -- [Optional] String to append to macro names. (Default: "")
3265
+
--
3246
3266
-- onInsert = function( name ) -- [Optional] Called for each @insert"name" instruction. It's expected to return a Lua code string. By default 'name' is a path to a file to be inserted.
3247
3267
-- onBeforeMeta = function( ) -- [Optional] Called before the metaprogram runs.
3248
3268
-- onError = function( error ) -- [Optional] You can use this to get traceback information. 'error' is the same value as the second returned value from processString().
0 commit comments