Module: RBText::Formatting

Included in:
F
Defined in:
lib/rbtext/formatting.rb

Class Method Summary collapse

Class Method Details

.boldObject



7
8
9
# File 'lib/rbtext/formatting.rb', line 7

def bold
  "\033[1m"
end

.faintObject



11
12
13
# File 'lib/rbtext/formatting.rb', line 11

def faint
  "\033[2m"
end

.italicObject



15
16
17
# File 'lib/rbtext/formatting.rb', line 15

def italic
  "\033[3m"
end

.resetObject



3
4
5
# File 'lib/rbtext/formatting.rb', line 3

def reset
  "\033[0m"
end

.underlineObject



19
20
21
# File 'lib/rbtext/formatting.rb', line 19

def underline
  "\033[4m"
end