Method: Raw#html

Defined in:
lib/curation/tools/raw.rb

#htmlObject



9
10
11
12
13
14
15
16
17
18
# File 'lib/curation/tools/raw.rb', line 9

def html
  unless @html
    file.rewind
    @html = file.read
    file.rewind
  end
  @html
rescue
  log "Curation::Page html error"
end