Closed soee closed 9 months ago
Before this changes we were indexing only documentations from 3 folders:
which were configured through services.yaml file and the docsearch.allowed_paths setting.
services.yaml
docsearch.allowed_paths
There are though important documentation files inside other and typo3cms folders.
other
typo3cms
This commit updates the allowed and excluded paths for indexing (services.yaml):
parameters: docsearch.allowed_paths: - ^m/ - ^c/ - ^p/ - ^other/ - ^typo3cms/ docsearch.excluded_directories: - draft - extensions
and introduces special handling for importding documentation of exceptions from typo3cms/exceptions folder, where the folders structure is shorted, and has to be handled different way to have proper slugs, paths etc.
typo3cms/exceptions
Before this changes we were indexing only documentations from 3 folders:
which were configured through
services.yaml
file and thedocsearch.allowed_paths
setting.There are though important documentation files inside
other
andtypo3cms
folders.This commit updates the allowed and excluded paths for indexing (services.yaml):
and introduces special handling for importding documentation of exceptions from
typo3cms/exceptions
folder, where the folders structure is shorted, and has to be handled different way to have proper slugs, paths etc.