JSX Support - md2docx/react-markdown GitHub Wiki

🧠 JSX-Aware Parsing

You can pass JSX structures with embedded Markdown strings:

<Md>
  <section>
    {"# Title\n\nThis is some **bold** text"}
  </section>
</Md>
  • Each markdown string is parsed separately.
  • astRef.current is an array: one node per Markdown string.
⚠️ **GitHub.com Fallback** ⚠️