mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-03 13:19:16 +00:00
Render URL as link in web interface if file param of result is a web link
This commit is contained in:
@@ -34,6 +34,9 @@
|
||||
function render_markdown(query, data) {
|
||||
var md = window.markdownit();
|
||||
return md.render(data.map(function (item) {
|
||||
lines = item.entry.split("\n")
|
||||
if (item.additional.file.startsWith("http"))
|
||||
return `${lines[0]}\t[*](${item.additional.file})\n${lines.slice(1).join("\n")}`
|
||||
return `${item.entry}`
|
||||
}).join("\n"));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user