We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b7d685 commit 8a9be18Copy full SHA for 8a9be18
1 file changed
generate.lua
@@ -135,6 +135,7 @@ local res,err=xpcall(function()
135
html=html.."\t\t<div align=\"left\" name=\"content\" class=\"bvc\"><div class=\"bevel tl tr\"></div><div class=\"content\"><div class=\"title\">"..name.."</div>"
136
end
137
html=html.."\n\t\t<table>\n"
138
+ local repourl = dat[2]
139
table.remove(dat, 1)
140
141
table.sort(dat, function(a,b) return (type(a)=="table" and a[1] or a) < (type(b)=="table" and b[1] or b) end)
@@ -145,7 +146,7 @@ local res,err=xpcall(function()
145
146
local url=pdat[2] or url_override_because_vexatos[pdat[1]]
147
if url then
148
if url:sub(1,1)=="/" then
- url=dat[2]..url
149
+ url=repourl..url
150
else
151
url="https://github.com/"..url
152
0 commit comments