Skip to content

Instantly share code, notes, and snippets.

@stevenharman
Created May 5, 2011 19:29
Show Gist options
  • Save stevenharman/957718 to your computer and use it in GitHub Desktop.
Save stevenharman/957718 to your computer and use it in GitHub Desktop.
<!-- the original SPARK template -->
<!-- notice the SINGLE QUOTES on the data-form attribute -->
<div data-form='{"method":"get", "action":"search"}'>
<input type="search" name="q" placeholder="search..." />
<input type="submit" value="go!" />
</div>
<!-- the generated html -->
<!-- notice the single quotes are now double quotes on the data-form attribute
this breaks the markup, completely! why not just leave the single quotes as they were? -->
<div data-form="{"method":"get", "action":"search"}">
<input type="search" name="q" placeholder="search..." />
<input type="submit" value="go!" />
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment