Skip to content

Instantly share code, notes, and snippets.

View philtr's full-sized avatar

Phillip Ridlen philtr

View GitHub Profile
@philtr
philtr / textarea_test.html
Created June 11, 2019 14:29
Disable all the autocorrect and smart quotes for textareas on iOS
<textarea id="stupid" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"></textarea>
<script>
function checkInput(e) {
if ((e.which == 39) || (e.which == 8216) || (e.which == 8217)) {
e.preventDefault();
document.execCommand('insertText', 0, "'");
}
}
var el = document.getElementById('stupid');
@philtr
philtr / google_doc.scss
Last active April 10, 2020 12:51
Scrape a Google doc and display on your site.
.google-doc {
.title { font-size: 2rem; font-weight: 900 }
ul { margin: 0.5rem 0; }
ul[class*="-1"] { margin-left: 2rem; }
ul[class*="-2"] { margin-left: 4rem; }
}