{$i18n.t('Citation')}
{#each mergedDocuments as document, documentIdx}
{$i18n.t('Source')}
{#if document.source?.name}
{document?.metadata?.name ?? document.source.name} {#if document?.metadata?.page} ({$i18n.t('page')} {document.metadata.page + 1}) {/if}
{#if showRelevance}
{$i18n.t('Relevance')}
{#if document.distance !== undefined}
{#if showPercentage} {@const percentage = calculatePercentage(document.distance)} {percentage.toFixed(2)}% ({document.distance.toFixed(4)}) {:else} {document.distance.toFixed(4)} {/if}
{:else}
{$i18n.t('No distance available')}
{/if} {/if} {:else}
{$i18n.t('No source available')}
{/if}
{$i18n.t('Content')}
							{document.document}
						
{#if documentIdx !== mergedDocuments.length - 1}
{/if} {/each}