From 0ff470d3b804890fe01558804b016857e29c6622 Mon Sep 17 00:00:00 2001 From: Phil Hagelberg Date: Sun, 26 Feb 2023 10:43:53 -0800 Subject: [PATCH] Disable spellcheck, autocorrect, etc. --- main.fnl | 5 ++++- see.html | 10 +++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/main.fnl b/main.fnl index 75fc74d..d2a23dd 100644 --- a/main.fnl +++ b/main.fnl @@ -74,7 +74,10 @@ [:div {:class "fengari-input-container"} [:label {:id "fengari-prompt" :for "fengari-input"} "> "] [:textarea {:class "lua" :id "fengari-input" :rows 1 - :placeholder "Type code here..."}] + :placeholder "Type code here..." + :spellcheck "false" + :autocorrect "off" + :autocapitalize "off"}] [:button {:id "toggle-compiled-code"} "Toggle Lua code"]]] [:div {:class "code code-flex" :id "lua-pane"} diff --git a/see.html b/see.html index fb956e5..41ba9ad 100644 --- a/see.html +++ b/see.html @@ -13,12 +13,16 @@

See Fennel

- +
-
- +
+
-- 2.38.5