--- interface Props { code: string; } const lines = Astro.props.code.trim().split(/\r?\n/); ---
{lines.map((line, i) => ( {i + 1}. {line} ))}