- ${displayName}
+ ${escapeHtml(displayName)}
${badges.join(' ')}
-
- ${tag.name}
+ ${escapeHtml(tag.name)}
${vulnIndicators ? `
${vulnIndicators}
` : ''}
- 最后更新: ${formatUtils.formatTimeAgo(tag.last_updated)}
- ${tag.last_pusher ? `由 ${tag.last_pusher} 推送` : ''}
- ${tag.full_size ? `大小: ${formatUtils.formatSize(tag.full_size)}` : ''}
+ 最后更新: ${escapeHtml(formatUtils.formatTimeAgo(tag.last_updated))}
+ ${tag.last_pusher ? `由 ${escapeHtml(tag.last_pusher)} 推送` : ''}
+ ${tag.full_size ? `大小: ${escapeHtml(formatUtils.formatSize(tag.full_size))}` : ''}
- docker pull ${fullRepoName}:${tag.name}
-
+ ${escapeHtml(pullCommand)}
+
${architectures ? `
${architectures}
` : ''}