| 123456789101112131415161718192021222324252627282930 |
- module Docs
- class Ocaml < FileScraper
- self.name = 'OCaml'
- self.type = 'ocaml'
- self.root_path = 'index.html'
- self.release = '4.11'
- self.base_url = "https://www.ocaml.org/releases/#{self.release}/htmlman/"
- self.links = {
- home: 'https://ocaml.org/',
- code: 'https://github.com/ocaml/ocaml'
- }
- html_filters.push 'ocaml/entries', 'ocaml/clean_html'
- options[:skip] = %w(
- libref/index.html
- )
- options[:skip_patterns] = [
- /\Acompilerlibref\//,
- /\Alibref\/type_/,
- /\Alibref\/Stdlib\.\w+\.html/,
- ]
- options[:attribution] = <<-HTML
- © INRIA 1995-2020.
- HTML
- end
- end
|