mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-20 02:18:20 +01:00
fix local image rendering bug
This commit is contained in:
parent
e4afc4b13a
commit
0ac3e723ba
@ -14,9 +14,8 @@ local pre_process_md = function(str, obj)
|
|||||||
if apath then
|
if apath then
|
||||||
apath = apath:gsub(" ", "%%%%20")
|
apath = apath:gsub(" ", "%%%%20")
|
||||||
print(apath)
|
print(apath)
|
||||||
content = str:gsub(pattern,
|
content = content:gsub(pattern, "![](" .. HTTP_ROOT .. "/" ..
|
||||||
"![](" .. HTTP_ROOT .. "/" .. obj.name ..
|
obj.name .. "/asset/" .. apath .. ")")
|
||||||
"/asset/" .. apath .. ")")
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return content
|
return content
|
||||||
@ -33,10 +32,10 @@ local post_process_md = function(str, obj)
|
|||||||
if apath then
|
if apath then
|
||||||
-- apath = utils.urlencode(apath):gsub("%%", "%%%%")
|
-- apath = utils.urlencode(apath):gsub("%%", "%%%%")
|
||||||
apath = apath:gsub(" ", "%%20")
|
apath = apath:gsub(" ", "%%20")
|
||||||
content = str:gsub(pattern,
|
content = content:gsub(pattern,
|
||||||
"<model-viewer src=\"" .. HTTP_ROOT .. "/" ..
|
"<model-viewer src=\"" .. HTTP_ROOT .. "/" ..
|
||||||
obj.name .. "/asset/" .. apath ..
|
obj.name .. "/asset/" .. apath ..
|
||||||
"\" auto-rotate camera-controls></model-viewer>")
|
"\" auto-rotate camera-controls></model-viewer>")
|
||||||
has_model = true
|
has_model = true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user