Method: Fdlint::Helper::CodeType.guess_by_content

Defined in:
lib/fdlint/helper/code_type.rb

.guess_by_content(text) ⇒ Object



27
28
29
30
31
# File 'lib/fdlint/helper/code_type.rb', line 27

def guess_by_content(text)
  return :html  if html? text
  return :css   if css? text
  :js #TODO: support more code syntaxes
end