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.
devdocs/lib/docs/scrapers/latex.rb

23 lines
484 B

module Docs
class Latex < UrlScraper
self.name = 'LaTeX'
self.slug = 'latex'
self.type = 'simple'
self.links = {
home: 'https://ctan.org/pkg/latex2e-help-texinfo/'
}
self.base_url = 'http://latexref.xyz'
html_filters.push 'latex/entries', 'latex/clean_html'
options[:skip_patterns] = [/^\/dev\//, /\.(dvi|pdf)$/]
options[:attribution] = <<-HTML
&copy; 20072018 Karl Berry<br>
Public Domain Software
HTML
end
end