mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-09 06:12:28 +02:00
20 lines
701 B
TypeScript
20 lines
701 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,
|
|
addTrailingSlash,
|
|
addLeadingSlash,
|
|
removeTrailingSlash,
|
|
type ApplyTrailingSlashParams,
|
|
} from './applyTrailingSlash';
|
|
export {addPrefix, removeSuffix, addSuffix, removePrefix} from './stringUtils';
|
|
export {getErrorCausalChain} from './errorUtils';
|