-
Notifications
You must be signed in to change notification settings - Fork 742
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5687 from unoplatform/dev/djo/docs-full-text-search
Dev/djo/docs full text search
- Loading branch information
Showing
6 changed files
with
1,252 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,48 @@ | ||
{ | ||
"build": { | ||
"content": [ | ||
{ | ||
"files": [ | ||
"api/**.yml", | ||
"api/index.md" | ||
] | ||
}, | ||
{ | ||
"files": [ | ||
"articles/**.md", | ||
"articles/**/toc.yml", | ||
"toc.yml", | ||
"*.md" | ||
] | ||
} | ||
], | ||
"resource": [ | ||
{ | ||
"files": [ | ||
"images/**", | ||
"articles/**.png", | ||
"articles/**.jpg", | ||
"articles/**.gif" | ||
] | ||
} | ||
], | ||
"overwrite": [ | ||
{ | ||
"files": [ | ||
"apidoc/**.md" | ||
"build": { | ||
"content": [ | ||
{ | ||
"files": ["api/**.yml", "api/index.md"] | ||
}, | ||
{ | ||
"files": [ | ||
"articles/**.md", | ||
"articles/**/toc.yml", | ||
"toc.yml", | ||
"*.md" | ||
] | ||
} | ||
], | ||
"exclude": [ | ||
"obj/**", | ||
"_site/**" | ||
] | ||
} | ||
], | ||
"dest": "_site", | ||
"globalMetadataFiles": [], | ||
"fileMetadataFiles": [], | ||
"template": [ | ||
"default", | ||
"templates/uno" | ||
], | ||
"postProcessors": [], | ||
"markdownEngineName": "markdig", | ||
"noLangKeyword": false, | ||
"keepFileLink": false, | ||
"cleanupCacheHistory": false, | ||
"disableGitFeatures": false, | ||
"globalMetadata": { | ||
"_appLogoPath": "images/UnoLogoSmall.png", | ||
"_appFaviconPath": "images/UnoLogoSmall.png" | ||
"resource": [ | ||
{ | ||
"files": [ | ||
"images/**", | ||
"articles/**.png", | ||
"articles/**.jpg", | ||
"articles/**.gif" | ||
] | ||
} | ||
], | ||
"overwrite": [ | ||
{ | ||
"files": ["apidoc/**.md"], | ||
"exclude": ["obj/**", "_site/**"] | ||
} | ||
], | ||
"dest": "_site", | ||
"globalMetadataFiles": [], | ||
"fileMetadataFiles": [], | ||
"template": ["default", "templates/uno"], | ||
"postProcessors": ["ExtractSearchIndex"], | ||
"markdownEngineName": "markdig", | ||
"noLangKeyword": false, | ||
"keepFileLink": false, | ||
"cleanupCacheHistory": false, | ||
"disableGitFeatures": false, | ||
"globalMetadata": { | ||
"_appLogoPath": "images/UnoLogoSmall.png", | ||
"_enableSearch": "true", | ||
"_appFaviconPath": "images/UnoLogoSmall.png" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.