I have CSV data like this: “This is image <img src='link'> for my new game ”. But when I import it, it doesn’t work and gives me an error.
Here is my public share link: LINK
(how to access public share link)
I have CSV data like this: “This is image <img src='link'> for my new game ”. But when I import it, it doesn’t work and gives me an error.
Here is my public share link: LINK
(how to access public share link)
Are you importing it into a rich text field?
You will want full HTML, e.g;
<p>This is image <img src='link'></p>
The link must be valid, and publicly accessible in order for Webflow to retrieve and store it. Then you’ll need to make sure your HTML is CSV encoded for the import.
You can also use the API or Webflow’s MCP for this, with some learning.
Wrap the whole string in proper HTML tags before import, like <p>This is image <img src="https://..."></p>, and make sure the CSV is encoded correctly. Had to do this on a CMS import once,Webflow rejects raw <img> without valid wrapping + public URLs.