diff --git a/src/routes/dashboard/chapters/[chapterId]/puzzle/[puzzleId]/+page.svelte b/src/routes/dashboard/chapters/[chapterId]/puzzle/[puzzleId]/+page.svelte index 3043dd4..66d57d6 100644 --- a/src/routes/dashboard/chapters/[chapterId]/puzzle/[puzzleId]/+page.svelte +++ b/src/routes/dashboard/chapters/[chapterId]/puzzle/[puzzleId]/+page.svelte @@ -1,15 +1,17 @@ -
+

{puzzle.name} ({puzzle.scoreMax} points)

- -
+
{@html marked(puzzle.content, options)}
{#if !puzzle.score} -
Valider
{:else} -
-
+
+

Tentative{puzzle.tries && puzzle.tries > 1 ? 's' : ''} :{' '} {puzzle.tries} @@ -75,7 +79,7 @@ - +

{/if}