Method: WebVTT::Cue.parse

Defined in:
lib/vtt/cue.rb

.parse(cue) ⇒ Object

读取内容



17
18
19
20
21
# File 'lib/vtt/cue.rb', line 17

def self.parse(cue)	    	
  cue = Cue.new(cue)
  cue.parse
  return cue
end