@@ -35,75 +35,72 @@ echo 'map <F2> :!vhc' >> ~/.vimrc
35
35
### Using styles
36
36
Instead of using the characters and the standard format you can set the string to process using styles as seen below.
37
37
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
41
40
┌─────────────────────────────┐
42
41
│ Woooow I'm using prettybox! │
43
42
└─────────────────────────────┘
44
-
45
- $
46
43
```
47
44
48
45
#### ` sides `
49
46
` echo "vhc:sides;Woooow I'm using sides!"|vhc ` produces:
50
- ```
47
+ ``` text
51
48
⎡ ⎤
52
49
⎢ Woooow I'm using sides! ⎥
53
50
⎣ ⎦
54
51
```
55
52
56
53
#### ` prettybox `
57
54
` echo "vhc:prettybox;Woooow I'm using prettybox!"|vhc ` produces:
58
- ```
55
+ ``` text
59
56
┌─────────────────────────────┐
60
57
│ Woooow I'm using prettybox! │
61
58
└─────────────────────────────┘
62
59
```
63
60
64
61
#### ` quotes `
65
62
` echo "vhc:quotes;Woooow I'm using quotes!"|vhc ` produces:
66
- ```
63
+ ``` text
67
64
"
68
65
Woooow I'm using quotes!
69
66
"
70
67
```
71
68
72
69
#### ` ccomment `
73
70
` echo "vhc:ccomment;Woooow I'm using ccomment!"|vhc ` produces:
74
- ```
71
+ ``` text
75
72
/*
76
73
* Woooow I'm using ccomment!
77
74
*/
78
75
```
79
76
80
77
#### ` lcomment `
81
78
` echo "vhc:lcomment;Woooow I'm using lcomment!"|vhc ` produces:
82
- ```
79
+ ``` text
83
80
//
84
81
// Woooow I'm using lcomment!
85
82
//
86
83
```
87
84
88
85
#### ` box `
89
86
` echo "vhc:box;Woooow I'm using box!"|vhc ` produces:
90
- ```
87
+ ``` text
91
88
+-----------------------+
92
89
| Woooow I'm using box! |
93
90
+-----------------------+
94
91
```
95
92
96
93
#### ` star ` , ` stars ` or ` asterisk `
97
94
` echo "vhc:stars;Woooow I'm using stars!"|vhc ` produces:
98
- ```
95
+ ``` text
99
96
***************************
100
97
* Woooow I'm using stars! *
101
98
***************************
102
99
```
103
100
104
101
#### Standart ` ernjs ` or ` ernando `
105
102
` echo "vhc:awesome;Woooow I'm using VHC!"|vhc ` produces:
106
- ```
103
+ ``` text
107
104
###############################
108
105
#### Woooow I'm using VHC! ####
109
106
###############################
0 commit comments