We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2da09c commit 73f29fdCopy full SHA for 73f29fd
config.ld
@@ -30,10 +30,10 @@ end
30
31
--- Handles display name and link for Globals module @see / @{} references
32
--- This may have to be modified in the future if we start having things be in subdirectories
33
-custom_see_handler("^Globals%.(.+)$", function(name)
34
- local url = "./Globals.html"
+custom_see_handler("^Globals%.([^%.]+)(.*)$", function(name, fieldExt)
+ local url = ("./Globals.html%#%s"):format(name)
35
36
- return name, url
+ return name .. fieldExt, url
37
end)
38
39
--- Postprocesses the HTML generated by LDoc.
0 commit comments