I think I figured out how your plugin works with hyperlinks. The links in Google Sheets can’t be a native Google hyperlink, they need to be an actual HTML link written out in the cell. I didn’t realize this. I’ve updated and now it seems to be working as expected.
You’re correct. SheetFusion imports Google Sheets as CSV, and Google’s native “Insert link” formatting is stored as cell metadata rather than as part of the cell text. That metadata is not included in the CSV export, so SheetFusion only receives Register without its URL.
For SheetFusion to render the link, enter the HTML directly in the cell:
<a href="https://www.google.com">Register</a>
Then set that column to Safe HTML / Links. Your update should now work as expected. Only use this option for trusted sheet content.
Thank you, I appreciate the quick response.