module AnyStyle
Constants
- RES
- SUPPORT
- VERSION
Public Class Methods
find(input, **opts)
click to toggle source
# File lib/anystyle.rb 72 def self.find(input, **opts) 73 finder.find(input, **opts) 74 end
finder()
click to toggle source
# File lib/anystyle.rb 68 def self.finder 69 Finder.instance 70 end
parse(input, **opts)
click to toggle source
# File lib/anystyle.rb 64 def self.parse(input, **opts) 65 parser.parse(input, **opts) 66 end
parser()
click to toggle source
# File lib/anystyle.rb 60 def self.parser 61 Parser.instance 62 end