Skip to content

Instantly share code, notes, and snippets.

@jenseng
Last active December 2, 2021 21:29
Show Gist options
  • Save jenseng/2baeb8f4e63ea3ad5fb72652862f9449 to your computer and use it in GitHub Desktop.
Save jenseng/2baeb8f4e63ea3ad5fb72652862f9449 to your computer and use it in GitHub Desktop.
//...
export default function App() {
let location = useLocation();
React.useLayoutEffect(() => {
[...document.querySelectorAll<HTMLSpanElement>('pre[data-lang] span')]
.filter(el => ['let', 'const', 'var'].includes(el.innerText))
.forEach(el => el.innerText = ['let', 'const', 'var'][Math.floor(Math.random() * 3)]);
}, [location.pathname]);
//...
}
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment