class EverExp::Note

Attributes

html[R]

Public Instance Methods

<<(html_or_files) click to toggle source
# File lib/ever_exp/note.rb, line 24
def <<(html_or_files)
  if html_or_files.isHtml?
    @html = html_or_files
  else
    @files = html_or_files
  end
  html_or_files.note = self
end
files() click to toggle source
# File lib/ever_exp/note.rb, line 12
def files
  @files || EverExp::WithoutFiles.instance
end
tag_array() click to toggle source
# File lib/ever_exp/note.rb, line 20
def tag_array
  html.tags_array
end
tags() click to toggle source
# File lib/ever_exp/note.rb, line 16
def tags
  html.tags
end
title() click to toggle source
# File lib/ever_exp/note.rb, line 8
def title
  html.title
end