Hi!
- This code doesn’t return anything:
<ReactMarkdown
source={articles.data[0].attributes.content}
/>
I managed to get the content by using
<ReactMarkdown
escapeHtml={false}
children={articles.data[0].attributes.content}
/>
-
The iframe is not converted to HTML code, as it is considered dangeroud HTML by React-Markdown.
Do you have any idea how I can get the iframe as HTML tag from markdown? -
In the tutorial, you forgot to mention installing graphql on the backend:
cd backend
yarn add graphql