lua.rb 405 B

1234567891011121314151617
  1. module Docs
  2. class Lua < UrlScraper
  3. self.type = 'lua'
  4. self.version = '5.3'
  5. self.base_url = 'http://www.lua.org/manual/5.3/'
  6. self.root_path = 'manual.html'
  7. html_filters.push 'lua/clean_html', 'lua/entries'
  8. options[:skip_links] = true
  9. options[:attribution] = <<-HTML
  10. &copy; 1994&ndash;2015 Lua.org, PUC-Rio.<br>
  11. Licensed under the MIT License.
  12. HTML
  13. end
  14. end