From d42ce981549b50ad7adfa2967f5749eab9ee9ee7 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 15 Apr 2015 11:10:24 -0700 Subject: [PATCH] readme. --- README.md | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 18be3b9..54dde89 100644 --- a/README.md +++ b/README.md @@ -264,6 +264,15 @@ The screen on which every other node renders. matter whether the keys are locked. - __dockBorders__ - automatically "dock" borders with other elements instead of overlapping, depending on position (__experimental__). for example: + These border-overlapped elements: + ┌─────────┌─────────┐ + │ box1 │ box2 │ + └─────────└─────────┘ + Become: + ┌─────────┬─────────┐ + │ box1 │ box2 │ + └─────────┴─────────┘ + - __fullUnicode__ - allow for rendering of East Asian double-width characters. also enable proper rendering of utf-16 surrogate pairs. this allows you to display text above the basic multilingual plane. this is behind an option @@ -273,22 +282,6 @@ The screen on which every other node renders. characters that are both surrogate pairs _and_ double-width properly. there is no way for blessed to fix this unfortunately). -These border-overlapped elements: - -``` -┌─────────┌─────────┐ -│ box1 │ box2 │ -└─────────└─────────┘ -``` - -Become: - -``` -┌─────────┬─────────┐ -│ box1 │ box2 │ -└─────────┴─────────┘ -``` - ##### Properties: - inherits all from Node.