Closed RangerMauve closed 2 years ago
If a string in JSON looks like a link, we should turn it into an href so that it can be clicked on.
href
This should also apply for relative URLs like ./ or ../
./
../
We should also detect ipld:// URLs yielding dag-JSON content which looks like {"/": "CID here"} and auto convert those strings to point at ipld://${cid}/ URLs so that data could be easily traversed.
ipld://
{"/": "CID here"}
ipld://${cid}/
If a string in JSON looks like a link, we should turn it into an
href
so that it can be clicked on.This should also apply for relative URLs like
./
or../