Method: Paragraph#to_src
- Defined in:
- lib/tdiary/io/pstore.rb
#to_src ⇒ Object
111 112 113 114 115 116 117 118 119 |
# File 'lib/tdiary/io/pstore.rb', line 111 def to_src s = '' if @subtitle then s += "[#{@author}]" if @author s += '<' if /^</ =~ @subtitle s += @subtitle + "\n" end "#{s}#{@body}\n\n" end |