mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-27 21:48:41 +02:00
* fix comment * allow to pass custom classname in navbar items * Add IconLanguage comp to dropdown * do not trim htmlLang * Add initial hreflang SEO support * doc hreflang
34 lines
903 B
TypeScript
34 lines
903 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
export {
|
|
useThemeConfig,
|
|
ThemeConfig,
|
|
Navbar,
|
|
NavbarItem,
|
|
NavbarLogo,
|
|
Footer,
|
|
FooterLinks,
|
|
FooterLinkItem,
|
|
} from './utils/useThemeConfig';
|
|
|
|
export {useAlternatePageUtils} from './utils/useAlternatePageUtils';
|
|
|
|
export {docVersionSearchTag, DEFAULT_SEARCH_TAG} from './utils/searchUtils';
|
|
|
|
export {isDocsPluginEnabled} from './utils/docsUtils';
|
|
|
|
export {isSamePath} from './utils/pathUtils';
|
|
|
|
export {useTitleFormatter} from './utils/generalUtils';
|
|
|
|
export {
|
|
useDocsPreferredVersion,
|
|
useDocsPreferredVersionByPluginId,
|
|
} from './utils/docsPreferredVersion/useDocsPreferredVersion';
|
|
|
|
export {DocsPreferredVersionContextProvider} from './utils/docsPreferredVersion/DocsPreferredVersionProvider';
|