mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-07 13:22:26 +02:00
16 lines
559 B
TypeScript
16 lines
559 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.
|
|
*/
|
|
|
|
// __ prefix allows search crawlers (Algolia/DocSearch) to ignore anchors
|
|
// https://github.com/facebook/docusaurus/issues/8883#issuecomment-1516328368
|
|
export const blogPostContainerID = '__blog-post-container';
|
|
|
|
export {
|
|
default as applyTrailingSlash,
|
|
type ApplyTrailingSlashParams,
|
|
} from './applyTrailingSlash';
|
|
export {getErrorCausalChain} from './errorUtils';
|