4141 REMOTE_REQUEST_HEADERS ,
4242)
4343from mkdocs_rss_plugin .git_manager .ci import CiHandler
44+ from mkdocs_rss_plugin .integrations .theme_material_blog_plugin import (
45+ IntegrationMaterialBlog ,
46+ )
4447from mkdocs_rss_plugin .integrations .theme_material_social_plugin import (
4548 IntegrationMaterialSocialCards ,
4649)
@@ -67,6 +70,7 @@ class Util:
6770 def __init__ (
6871 self ,
6972 cache_dir : Path = DEFAULT_CACHE_FOLDER ,
73+ integration_material_blog : Optional [IntegrationMaterialBlog ] = None ,
7074 integration_material_social_cards : Optional [
7175 IntegrationMaterialSocialCards
7276 ] = None ,
@@ -79,6 +83,8 @@ def __init__(
7983 Args:
8084 path (str, optional): path to the git repository to use. Defaults to ".".
8185 use_git (bool, optional): flag to use git under the hood or not. Defaults to True.
86+ integration_material_blog (bool, optional): option to enable
87+ integration with Blog plugin from Material theme. Defaults to True.
8288 integration_material_social_cards (bool, optional): option to enable
8389 integration with Social Cards plugin from Material theme. Defaults to True.
8490 """
@@ -128,6 +134,7 @@ def __init__(
128134 self .use_git = use_git
129135
130136 # save integrations
137+ self .material_blog = integration_material_blog
131138 self .social_cards = integration_material_social_cards
132139
133140 # http/s session
0 commit comments