You can search for identifiers within the package.
in-package search v0.2.0
Module representing errors in the epub structure or in the xml.
type locate = [
| `Manifest
| `Metadata
| `Toc
]
type t =
| CannotFindFile of string
| UnexpectedText of locate
| UnexpectedNode of locate
| MissingAttribute of locate * string
| MissingTag of locate * string
| MissingChild of locate
| PlayOrderNotInteger
| MetadataMissingTitle
| MissingToc
| MissingOpf
| MissingManifest
| MissingMetadata
| MissingSpine
| EmptyXml