Skip to content

Instantly share code, notes, and snippets.

@KaKi87
Created December 19, 2018 12:43
Show Gist options
  • Save KaKi87/85186cff729b50c1434d8bffafee46ea to your computer and use it in GitHub Desktop.
Save KaKi87/85186cff729b50c1434d8bffafee46ea to your computer and use it in GitHub Desktop.
Indent JSON in browser
// Simple.
document.body.innerHTML = `<pre>${JSON.stringify(JSON.parse(document.body.textContent), null, 4)}</pre>`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment