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.
32 lines
812 B
32 lines
812 B
module Docs
|
|
class Elixir < UrlScraper
|
|
self.name = 'Elixir'
|
|
self.type = 'elixir'
|
|
self.release = '1.2.4'
|
|
self.base_url = 'http://elixir-lang.org/docs/stable/'
|
|
self.root_path = 'elixir/api-reference.html'
|
|
self.initial_paths = %w(
|
|
eex/EEx.html
|
|
ex_unit/ExUnit.html
|
|
iex/IEx.html
|
|
logger/Logger.html
|
|
mix/Mix.html
|
|
)
|
|
self.links = {
|
|
home: 'http://elixir-lang.org/',
|
|
code: 'https://github.com/elixir-lang/elixir'
|
|
}
|
|
|
|
html_filters.push 'elixir/clean_html', 'elixir/entries', 'title'
|
|
|
|
options[:container] = "#content"
|
|
options[:title] = false
|
|
options[:root_title] = 'Elixir'
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2012–2016 Plataformatec<br>
|
|
Licensed under the Apache License, Version 2.0.
|
|
HTML
|
|
end
|
|
end
|