chore: Plugin scoped to ajax-docs only

This commit is contained in:
imtodor 2018-10-25 17:42:29 +03:00
Родитель c970ca68a3
Коммит 81b717cf49
1 изменённых файлов: 8 добавлений и 7 удалений

Просмотреть файл

@ -1,12 +1,13 @@
module Reading
class RemoveInheritanceGenerator < Jekyll::Generator
def generate(site)
@site = site
site.pages.each do |p|
if p.data["description"] == "Client-side API Reference"
p.content.sub!(/(^#[^:]*).*/, '\1')
end
end
def generate(site)
if site.platform == "aspnet-ajax"
site.pages.each do |p|
if p.data["description"] == "Client-side API Reference"
p.content.sub!(/(^#[^:]*).*/, '\1')
end
end
end
end
end
end