From a6e9ad0b7d4108a170b7d2e43576377bb0ad7516 Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Sat, 28 Oct 2017 10:37:56 +0200 Subject: [PATCH] add a title page The first page of the book is the title --- src/Wallabag/CoreBundle/Helper/EntriesExport.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Wallabag/CoreBundle/Helper/EntriesExport.php b/src/Wallabag/CoreBundle/Helper/EntriesExport.php index 830798b8..1b4afa3b 100644 --- a/src/Wallabag/CoreBundle/Helper/EntriesExport.php +++ b/src/Wallabag/CoreBundle/Helper/EntriesExport.php @@ -190,7 +190,8 @@ class EntriesExport // in filenames, we limit to A-z/0-9 $filename = preg_replace('/[^A-Za-z0-9\-]/', '', $entry->getTitle()); - $chapter = $content_start . $entry->getContent() . $bookEnd; + $titlepage = "

".$entry->getTitle()."

"; + $chapter = $content_start . $titlepage . $entry->getContent() . $bookEnd; $book->addChapter($entry->getTitle(), htmlspecialchars($filename) . '.html', $chapter, true, EPub::EXTERNAL_REF_ADD); } -- 2.41.0