Improve plugin inter-op with external tools like mike

This commit is contained in:
squidfunk
2023-07-24 12:29:16 +01:00
parent ef448ed945
commit ab178b2bc2
6 changed files with 50 additions and 8 deletions

View File

@@ -42,14 +42,20 @@ except ImportError:
# Search plugin
class SearchPlugin(BasePlugin[SearchConfig]):
# Determine whether we're running under dirty reload
def on_startup(self, *, command, dirty):
# Initialize plugin
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# Initialize variables for incremental builds
self.is_dirtyreload = False
self.is_dirty = dirty
# Initialize search index cache
self.search_index_prev = None
# Determine whether we're serving
def on_startup(self, *, command, dirty):
self.is_dirty = dirty
# Initialize plugin
def on_config(self, config):
if not self.config.lang: