-
Markdown Tables Disappearing
2025-11-13 14:44You can do one thing, take the screenshot of the table, then convert that table (image) into base64 encoding and embed that via HTML block, (you can get script for that at powershell for windows or look similar way for other OS)
For Windows this is the code (PowerShell)
[convert]::ToBase64String((Get-Content image.png -Encoding byte))Embed into page as HTML element
Replace
iVBORw0KGgoAAAANSUhEUgAA...with actual encoded value