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
|
||||
apath = apath:gsub(" ", "%%%%20")
|
||||
print(apath)
|
||||
content = str:gsub(pattern,
|
||||
"![](" .. HTTP_ROOT .. "/" .. obj.name ..
|
||||
"/asset/" .. apath .. ")")
|
||||
content = content:gsub(pattern, "![](" .. HTTP_ROOT .. "/" ..
|
||||
obj.name .. "/asset/" .. apath .. ")")
|
||||
end
|
||||
end
|
||||
return content
|
||||
@ -33,7 +32,7 @@ local post_process_md = function(str, obj)
|
||||
if apath then
|
||||
-- apath = utils.urlencode(apath):gsub("%%", "%%%%")
|
||||
apath = apath:gsub(" ", "%%20")
|
||||
content = str:gsub(pattern,
|
||||
content = content:gsub(pattern,
|
||||
"<model-viewer src=\"" .. HTTP_ROOT .. "/" ..
|
||||
obj.name .. "/asset/" .. apath ..
|
||||
"\" auto-rotate camera-controls></model-viewer>")
|
||||
|
Loading…
Reference in New Issue
Block a user