Merge branch 'feat-ordered-list' of https://github.com/jpirnay/crosspoint-reader into mybuild
This commit is contained in:
@@ -73,6 +73,13 @@ class ChapterHtmlSlimParser {
|
||||
int tableRowIndex = 0;
|
||||
int tableColIndex = 0;
|
||||
|
||||
struct ListEntry {
|
||||
int depth;
|
||||
bool isOrdered;
|
||||
int counter;
|
||||
};
|
||||
std::vector<ListEntry> listStack;
|
||||
|
||||
// Anchor-to-page mapping: tracks which page each HTML id attribute lands on
|
||||
int completedPageCount = 0;
|
||||
std::vector<std::pair<std::string, uint16_t>> anchorData;
|
||||
|
||||
Reference in New Issue
Block a user