Skip to content

Instantly share code, notes, and snippets.

@berdosi
Created May 22, 2018 16:58
Show Gist options
  • Save berdosi/608a361da6a18aaf79f26d72ef547e0a to your computer and use it in GitHub Desktop.
Save berdosi/608a361da6a18aaf79f26d72ef547e0a to your computer and use it in GitHub Desktop.
replace 8 character long tabs in github wit shorter lines
[... document.querySelectorAll(".file td")]
.map(td =>
td.firstChild
? td.firstChild.textContent
= td.firstChild.textContent
.replace(
/^(\t+)/,
(match, p1) =>
" ".repeat(4).repeat(p1.length))
: "")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment