Update generateEpub.js

Force addition
This commit is contained in:
Funtime60 2023-07-23 14:00:21 -06:00 committed by GitHub
parent 56562f88ca
commit ac60ed6d1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ export class EpubGenerator extends BaseGenerator {
textContent.push(enc.encode(`<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Page ${i + 1}</title>
<title>Page ${Number(i) + Number(1)}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="EPB-UUID" content=""/>
</head>
@ -170,4 +170,4 @@ export class EpubGenerator extends BaseGenerator {
</navMap>
</ncx>`), true);
}
}
}