Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 870e8ff

Browse files
committed
🤦
1 parent 62225ae commit 870e8ff

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

README.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -35,75 +35,72 @@ echo 'map <F2> :!vhc' >> ~/.vimrc
3535
### Using styles
3636
Instead of using the characters and the standard format you can set the string to process using styles as seen below.
3737

38-
```
39-
$ echo "vhc:prettybox;Woooow I'm using prettybox!"|vhc
40-
38+
`echo "vhc:prettybox;Woooow I'm using prettybox!"|vhc` produces output:
39+
```text
4140
┌─────────────────────────────┐
4241
│ Woooow I'm using prettybox! │
4342
└─────────────────────────────┘
44-
45-
$
4643
```
4744

4845
#### `sides`
4946
`echo "vhc:sides;Woooow I'm using sides!"|vhc` produces:
50-
```
47+
```text
5148
⎡ ⎤
5249
⎢ Woooow I'm using sides! ⎥
5350
⎣ ⎦
5451
```
5552

5653
#### `prettybox`
5754
`echo "vhc:prettybox;Woooow I'm using prettybox!"|vhc` produces:
58-
```
55+
```text
5956
┌─────────────────────────────┐
6057
│ Woooow I'm using prettybox! │
6158
└─────────────────────────────┘
6259
```
6360

6461
#### `quotes`
6562
`echo "vhc:quotes;Woooow I'm using quotes!"|vhc` produces:
66-
```
63+
```text
6764
"
6865
Woooow I'm using quotes!
6966
"
7067
```
7168

7269
#### `ccomment`
7370
`echo "vhc:ccomment;Woooow I'm using ccomment!"|vhc` produces:
74-
```
71+
```text
7572
/*
7673
* Woooow I'm using ccomment!
7774
*/
7875
```
7976

8077
#### `lcomment`
8178
`echo "vhc:lcomment;Woooow I'm using lcomment!"|vhc` produces:
82-
```
79+
```text
8380
//
8481
// Woooow I'm using lcomment!
8582
//
8683
```
8784

8885
#### `box`
8986
`echo "vhc:box;Woooow I'm using box!"|vhc` produces:
90-
```
87+
```text
9188
+-----------------------+
9289
| Woooow I'm using box! |
9390
+-----------------------+
9491
```
9592

9693
#### `star`, `stars` or `asterisk`
9794
`echo "vhc:stars;Woooow I'm using stars!"|vhc` produces:
98-
```
95+
```text
9996
***************************
10097
* Woooow I'm using stars! *
10198
***************************
10299
```
103100

104101
#### Standart `ernjs` or `ernando`
105102
`echo "vhc:awesome;Woooow I'm using VHC!"|vhc` produces:
106-
```
103+
```text
107104
###############################
108105
#### Woooow I'm using VHC! ####
109106
###############################

0 commit comments

Comments
 (0)