Skip to content

Add parallel passage references from translations #28

Description

@KallynGowdy

Some translations include information about parallel passages. USX also has support for representing this: Reference. They should be represented using the following structure:

type ChapterContent =
    | ChapterHeading
    | ChapterLineBreak
    | ChapterVerse
    | ChapterHebrewSubtitle
    | ChapterParallelPassages;

interface ChapterParallelPassages {
    /**
     * The text content of the parallel passage(s) marker.
     */
    content: string;

    /**
     * The parsed references, if available.
     */
    references?: VerseRef[];
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    • Status
      No status

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions