{node?.id.split("/").at(-1) || "Help"} {#if input} > {input} {/if}

{#if node}
{#if input} {node?.inputs?.[input]?.description || input} {:else if node?.meta?.description} {node?.meta?.description} {:else}
{node.id}
{/if}
{#if !input}
-> {node?.outputs?.map((o) => o).join(", ") ?? "nothing"}
{/if} {/if}