This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const str = "Crème Brulée" | |
str.normalize("NFD").replace(/[\u0300-\u036f]/g, "") | |
// > "Creme Brulee" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<code-printer> | |
{{ json }} | |
</code-printer> | |
</template> | |
<script> | |
import CodePrinter from './CodePrinter'; | |
export default { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget \ | |
--recursive \ | |
--page-requisites \ | |
--adjust-extension \ | |
--span-hosts \ | |
--convert-links \ | |
--domains gurucall.io \ | |
--no-parent \ |
OlderNewer