module Jekyll::Algolia::Configurator
def self.default_extensions_to_index
Markdown files can have many different extensions. We keep the one
Public: Setting a default values to index only html and markdown files
def self.default_extensions_to_index markdown_ext = get('markdown_ext') || '' ['html'] + markdown_ext.split(',') end