adding Marker to parse effectively pdf

This commit is contained in:
Adrien
2026-04-04 21:30:18 +02:00
parent b154e29f2d
commit ea1276dc2e
25 changed files with 2318 additions and 285 deletions
+8
View File
@@ -33,6 +33,13 @@
</div>
<div class="book-actions">
<router-link
v-if="book.status === 'READY'"
:to="{ name: 'book-reader', params: { id: book.id } }"
class="btn btn-secondary"
>
Read
</router-link>
<button
class="btn btn-danger"
:disabled="book.status === 'PROCESSING' || deleting"
@@ -181,6 +188,7 @@ function formatDate(iso: string): string {
.book-actions {
display: flex;
justify-content: flex-end;
gap: 0.5rem;
margin-top: 0.25rem;
}
</style>