summaryrefslogtreecommitdiffstats
path: root/public/.local/share/dmenu/snippet
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2025-07-01 15:29:27 +0900
committerMitsuo Tokumori <[email protected]>2025-07-01 15:29:27 +0900
commit9a878b2b6f94f955ca6caf9b44fb947635da67f1 (patch)
tree580ab46823a76af307d5aac9ef48dd7766151b35 /public/.local/share/dmenu/snippet
parenta2f2b28f086c455f85e3ec31c1fdde54b363744c (diff)
downloaddotfiles-9a878b2b6f94f955ca6caf9b44fb947635da67f1.tar.gz
dotfiles-9a878b2b6f94f955ca6caf9b44fb947635da67f1.tar.bz2
dotfiles-9a878b2b6f94f955ca6caf9b44fb947635da67f1.zip
Add snippet.sh
Diffstat (limited to 'public/.local/share/dmenu/snippet')
-rw-r--r--public/.local/share/dmenu/snippet/htmlEscape.js9
-rw-r--r--public/.local/share/dmenu/snippet/test.sh1
-rw-r--r--public/.local/share/dmenu/snippet/wikitable.wiki13
3 files changed, 23 insertions, 0 deletions
diff --git a/public/.local/share/dmenu/snippet/htmlEscape.js b/public/.local/share/dmenu/snippet/htmlEscape.js
new file mode 100644
index 0000000..f4a3673
--- /dev/null
+++ b/public/.local/share/dmenu/snippet/htmlEscape.js
@@ -0,0 +1,9 @@
+/* https://stackoverflow.com/questions/7381974/which-characters-need-to-be-escaped-in-html#7382028 */
+function htmlEscape(text) {
+ return String(text)
+ .replaceAll("&", "&amp;")
+ .replaceAll("<", "&lt;")
+ .replaceAll(">", "&gt;")
+ .replaceAll('"', "&quot;")
+ .replaceAll("'", "&#39;");
+}
diff --git a/public/.local/share/dmenu/snippet/test.sh b/public/.local/share/dmenu/snippet/test.sh
new file mode 100644
index 0000000..fcadfe3
--- /dev/null
+++ b/public/.local/share/dmenu/snippet/test.sh
@@ -0,0 +1 @@
+[ 0 -eq 1 ] && echo True || echo False
diff --git a/public/.local/share/dmenu/snippet/wikitable.wiki b/public/.local/share/dmenu/snippet/wikitable.wiki
new file mode 100644
index 0000000..4d05d14
--- /dev/null
+++ b/public/.local/share/dmenu/snippet/wikitable.wiki
@@ -0,0 +1,13 @@
+{| class="wikitable sortable"
+|+ Meteorological seasons
+|-
+! Northern hemisphere !! Southern hemisphere !! Start date
+|-
+| Winter || Summer || 12月1日
+|-
+| Spring || Autumn (aka: Fall) || 3月1日
+|-
+| Summer || Winter || 6月1日
+|-
+| Autumn (aka: Fall) || Spring || 9月1日
+|}