aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Unicode Boxes.wiki13
-rw-r--r--index.wiki1
-rwxr-xr-xwiki6
3 files changed, 17 insertions, 3 deletions
diff --git a/Unicode Boxes.wiki b/Unicode Boxes.wiki
new file mode 100644
index 0000000..1fa9298
--- /dev/null
+++ b/Unicode Boxes.wiki
@@ -0,0 +1,13 @@
+
+| | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A | B | C | D | E | F |
+|--------|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
+| U+250x | ─ | ━ | │ | ┃ | ┄ | ┅ | ┆ | ┇ | ┈ | ┉ | ┊ | ┋ | ┌ | ┍ | ┎ | ┏ |
+| U+251x | ┐ | ┑ | ┒ | ┓ | └ | ┕ | ┖ | ┗ | ┘ | ┙ | ┚ | ┛ | ├ | ┝ | ┞ | ┟ |
+| U+252x | ┠ | ┡ | ┢ | ┣ | ┤ | ┥ | ┦ | ┧ | ┨ | ┩ | ┪ | ┫ | ┬ | ┭ | ┮ | ┯ |
+| U+253x | ┰ | ┱ | ┲ | ┳ | ┴ | ┵ | ┶ | ┷ | ┸ | ┹ | ┺ | ┻ | ┼ | ┽ | ┾ | ┿ |
+| U+254x | ╀ | ╁ | ╂ | ╃ | ╄ | ╅ | ╆ | ╇ | ╈ | ╉ | ╊ | ╋ | ╌ | ╍ | ╎ | ╏ |
+| U+255x | ═ | ║ | ╒ | ╓ | ╔ | ╕ | ╖ | ╗ | ╘ | ╙ | ╚ | ╛ | ╜ | ╝ | ╞ | ╟ |
+| U+256x | ╠ | ╡ | ╢ | ╣ | ╤ | ╥ | ╦ | ╧ | ╨ | ╩ | ╪ | ╫ | ╬ | ╭ | ╮ | ╯ |
+| U+257x | ╰ | ╱ | ╲ | ╳ | ╴ | ╵ | ╶ | ╷ | ╸ | ╹ | ╺ | ╻ | ╼ | ╽ | ╾ | ╿ |
+
+Borrowed from https://en.wikipedia.org/wiki/Box-drawing_character
diff --git a/index.wiki b/index.wiki
index 30238ff..72ed415 100644
--- a/index.wiki
+++ b/index.wiki
@@ -65,6 +65,7 @@
== Misc ==
- [[Lisp Quine]]
- [[PEP3131]]
+- [[Unicode Boxes]]
--------------------------------------------------
- [[Mimetypes]]
diff --git a/wiki b/wiki
index 26f91ef..9ce12f7 100755
--- a/wiki
+++ b/wiki
@@ -15,9 +15,9 @@ wiki_list=""
#
function commit {
if [ $# -lt 2 ]; then
- msg="$(date --rfc-email)"
+ msg="$(date)"
else
- msg="$@"
+ msg="$*"
fi
git add -A
git commit -m "$msg"
@@ -30,7 +30,7 @@ function ammend {
if [ $# -eq 1 ]; then
git commit --amend
else
- msg="$@"
+ msg="$*"
git commit --amend -m "$msg"
fi
}