Sha256: 003fa5b91563ad88c180651bbe346e809f784988ae2e40bfcf4bab5ffee592da
Contents?: true
Size: 654 Bytes
Versions: 66
Compression:
Stored size: 654 Bytes
Contents
# encoding: utf-8 require 'active_support/core_ext/object/inclusion' require 'open_classes/string/heading_helper' class String include HeadingHelper # Space4 SPACE4 = ' ' # create heading string with Emmet-like syntax. # # ==== Examples # # > case # # 'hoge>hige'.to_space4_heading # => 'hoge\n hige' # # + case # # 'hoge+hige'.to_space4_heading # => 'hoge\nhige' # # ^ case # # 'hoge>hige^hege'.to_space4_heading # => 'hoge\n hige\nhege' # def to_space4_heading heading = to_heading to_space4 heading end private def to_space4(heading) to_head(heading, SPACE4) end end
Version data entries
66 entries across 66 versions & 1 rubygems