Skip to content

Commit

Permalink
test: enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
TOsmanov committed Oct 15, 2024
1 parent cb200ef commit 63d3c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions foliant/preprocessors/includes.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ def __init__(self, *args, **kwargs):
self._cache_dir_path = self.project_path / self.options['cache_dir']
self._downloaded_dir_path = self._cache_dir_path / '_downloaded_content'
self.src_dir = self.config.get("src_dir")
self.includes_map_enable = False
self.includes_map_anchors = False
self.includes_map_enable = True # TODO:set the default value to False
self.includes_map_anchors = True # TODO:set the default value to False
if 'includes_map' in self.options:
self.includes_map_enable = True
self.includes_map = []
Expand Down

0 comments on commit 63d3c2d

Please sign in to comment.