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.
20 lines
440 B
20 lines
440 B
3 years ago
|
module Docs
|
||
3 years ago
|
class Cpp < Cppref
|
||
|
self.name = 'C++'
|
||
|
self.slug = 'cpp'
|
||
3 years ago
|
self.base_url = 'https://en.cppreference.com/w/cpp/'
|
||
|
|
||
3 years ago
|
html_filters.insert_before 'cppref/clean_html', 'cpp/entries'
|
||
3 years ago
|
|
||
|
options[:root_title] = 'C++ Programming Language'
|
||
|
|
||
|
options[:skip] = %w(
|
||
|
language/extending_std.html
|
||
|
language/history.html
|
||
|
regex/ecmascript.html
|
||
|
regex/regex_token_iterator/operator_cmp.html
|
||
|
)
|
||
|
|
||
|
end
|
||
|
end
|