read_entry_source
Read the raw source lines of an entry from a Norton Guide file at a given byte offset, returning the lines, entry type, and related references.
Instructions
Return the raw source lines of the entry at a given offset.
Args:
path: Absolute path to the .ng file.
offset: Byte offset of the entry within the guide, as returned by
list_entries or list_menus.
Returns: A dictionary containing:
- ``offset`` (int): The entry's offset.
- ``type`` (str): ``"short"`` or ``"long"``.
- ``lines`` (list[str]): Raw source lines of the entry, as strings.
- ``see_also`` (list[dict]): For long entries only — each item has
``text`` (str) and ``offset`` (int) keys. Empty list for short
entries.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| offset | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||