Magpie HTML - v0.1.3
    Preparing search index...

    Interface FeedItem

    Feed item (entry/article/post).

    Represents a single item in a feed. Items are normalized across all formats to provide a consistent interface. Not all fields are available in all formats.

    interface FeedItem {
        id: string;
        title?: string;
        url?: string;
        externalUrl?: string;
        contentHtml?: string;
        contentText?: string;
        summary?: string;
        published?: string;
        modified?: string;
        authors?: FeedAuthor[];
        tags?: string[];
        image?: string;
        enclosures?: FeedEnclosure[];
    }
    Index

    Properties

    id: string

    Unique identifier for the item (GUID, ID, or URL)

    title?: string

    Item title

    url?: string

    Canonical URL for the item

    externalUrl?: string

    External URL for linked posts (when different from canonical URL)

    contentHtml?: string

    Full HTML content of the item

    contentText?: string

    Plain text content of the item

    summary?: string

    Short summary or description

    published?: string

    Publication date in ISO 8601 format

    modified?: string

    Last modified date in ISO 8601 format

    authors?: FeedAuthor[]

    Item authors (may be empty if using feed-level authors)

    tags?: string[]

    Tags, categories, or keywords

    image?: string

    Featured image URL

    enclosures?: FeedEnclosure[]

    Attached files (audio, video, documents)