Module: RBText::Formatting
- Defined in:
- lib/rbtext/formatting.rb
Class Method Summary collapse
Class Method Details
.bold ⇒ Object
7 8 9 |
# File 'lib/rbtext/formatting.rb', line 7 def bold "\033[1m" end |
.faint ⇒ Object
11 12 13 |
# File 'lib/rbtext/formatting.rb', line 11 def faint "\033[2m" end |
.italic ⇒ Object
15 16 17 |
# File 'lib/rbtext/formatting.rb', line 15 def italic "\033[3m" end |
.reset ⇒ Object
3 4 5 |
# File 'lib/rbtext/formatting.rb', line 3 def reset "\033[0m" end |
.underline ⇒ Object
19 20 21 |
# File 'lib/rbtext/formatting.rb', line 19 def underline "\033[4m" end |