Troubleshooting - grrr-amsterdam/simply-static-deploy GitHub Wiki

Troubleshooting

Missing HTML attributes

If you're missing HTML attributes, make sure you're rendering a space between them. This error has been known to cause attributes to disappear.

Example:

<div data-foo="1"data-bar="2">
  ...
</div>

Fix by applying whitespace between the attributes:

<div data-foo="1" data-bar="2">
  ...
</div>
⚠️ **GitHub.com Fallback** ⚠️