mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
405 B
18 lines
405 B
10 years ago
|
module Docs
|
||
|
class Lua < UrlScraper
|
||
|
self.type = 'lua'
|
||
|
self.version = '5.3'
|
||
|
self.base_url = 'http://www.lua.org/manual/5.3/'
|
||
|
self.root_path = 'manual.html'
|
||
|
|
||
|
html_filters.push 'lua/clean_html', 'lua/entries'
|
||
|
|
||
|
options[:skip_links] = true
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© 1994–2015 Lua.org, PUC-Rio.<br>
|
||
|
Licensed under the MIT License.
|
||
|
HTML
|
||
|
end
|
||
|
end
|