Hi. Thanks for this tutorial. Here is a possible fix for iframe tag issue. But it will show other HTML elements too.
in /pages/article/[slug].[js|tsx]
import rehypeRaw from "rehype-raw";
// Find this:
<ReactMarkdown children={article.attributes.content} />
// Change to this
<ReactMarkdown children={article.attributes.content} rehypePlugins={[rehypeRaw]}/>