@promptbook/legacy-documents 0.74.0-7 → 0.74.0-8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/index.es.js CHANGED
@@ -23,7 +23,7 @@ var BOOK_LANGUAGE_VERSION = '1.0.0';
23
23
  *
24
24
  * @see https://github.com/webgptorg/promptbook
25
25
  */
26
- var PROMPTBOOK_ENGINE_VERSION = '0.74.0-6';
26
+ var PROMPTBOOK_ENGINE_VERSION = '0.74.0-7';
27
27
  /**
28
28
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
29
29
  */
@@ -4497,10 +4497,12 @@ function countLines(text) {
4497
4497
  * @public exported from `@promptbook/utils`
4498
4498
  */
4499
4499
  function countPages(text) {
4500
- var sentencesPerPage = 5; // Assuming each page has 5 sentences
4501
- var sentences = text.split(/[.!?]+/).filter(function (sentence) { return sentence.trim() !== ''; });
4502
- var pageCount = Math.ceil(sentences.length / sentencesPerPage);
4503
- return pageCount;
4500
+ if (text === '') {
4501
+ return 0;
4502
+ }
4503
+ var pagesByLinesCount = Math.ceil(countLines(text) / 44);
4504
+ var pagesByCharactersCount = Math.ceil(countCharacters(text) / 2772);
4505
+ return Math.max(pagesByLinesCount, pagesByCharactersCount);
4504
4506
  }
4505
4507
 
4506
4508
  /**