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.
13 lines
255 B
13 lines
255 B
3 years ago
|
module Docs
|
||
|
class C < Cppref
|
||
|
self.name = 'c'
|
||
|
self.slug = 'c'
|
||
|
self.base_url = 'https://en.cppreference.com/w/c/'
|
||
|
|
||
|
html_filters.insert_before 'cppref/clean_html', 'c/entries'
|
||
|
|
||
|
options[:root_title] = 'C Programming Language'
|
||
|
|
||
|
end
|
||
|
end
|