--- // github.com/rezahedi/rezahedi.dev/blob/main/src/components/TOCHeading.astro const { heading, parentMono } = Astro.props; // If a heading starts with `API: ` // then its children should be rendered with a mono font const isMono = heading.text.startsWith("API: "); const monoClass = parentMono? " font-mono" : ""; ---
  • {heading.text} { heading.subheadings.length > 0 && ( ) }