3,479
个编辑
第25行: | 第25行: | ||
const convertToLink = function(text) { | const convertToLink = function(text) { | ||
// 处理文件链接 | |||
text = text.replace(/(\[\[文件:(.*?)\|)(\d+x\d+)(\]\])/g, function(match, p1, p2, p3, p4) { | |||
return p1 + p2 + p4 + ' style="width:' + p3.split('x')[0] + 'px; height:' + p3.split('x')[1] + 'px;"'; | |||
}); | |||
// 处理普通链接 | |||
return text.replace(/\[\[(.*?)\]\]/g, '<a href="/index.php?title=$1">$1</a>'); | |||
}; | |||
const items = new vis.DataSet(itemsArray.map(function(item, index) { | const items = new vis.DataSet(itemsArray.map(function(item, index) { |