mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-11 15:22:29 +02:00
feat(docs,blog,pages): add support for "unlisted" front matter - hide md content in production (#8004)
Co-authored-by: sebastienlorber <lorber.sebastien@gmail.com>
This commit is contained in:
parent
7a023a2c41
commit
683ba3d2a0
131 changed files with 2449 additions and 303 deletions
|
@ -27,6 +27,8 @@ declare module '@docusaurus/plugin-content-pages' {
|
|||
readonly hide_table_of_contents?: string;
|
||||
readonly toc_min_heading_level?: number;
|
||||
readonly toc_max_heading_level?: number;
|
||||
readonly draft?: boolean;
|
||||
readonly unlisted?: boolean;
|
||||
};
|
||||
|
||||
export type JSXPageMetadata = {
|
||||
|
@ -42,6 +44,7 @@ declare module '@docusaurus/plugin-content-pages' {
|
|||
frontMatter: FrontMatter & {[key: string]: unknown};
|
||||
title?: string;
|
||||
description?: string;
|
||||
unlisted: boolean;
|
||||
};
|
||||
|
||||
export type Metadata = JSXPageMetadata | MDXPageMetadata;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue