-
-
Couldn't load subscription status.
- Fork 643
feat: add page icon align option #618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
2164727
e08738d
fafe3d4
20769e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,6 +35,7 @@ export interface NotionContext { | |
| minTableOfContentsItems: number | ||
| linkTableTitleProperties: boolean | ||
| isLinkCollectionToUrlProperty: boolean | ||
| alignCenter: boolean | ||
|
|
||
| defaultPageIcon?: string | null | ||
| defaultPageCover?: string | null | ||
|
|
@@ -63,6 +64,7 @@ export interface PartialNotionContext { | |
| showCollectionViewDropdown?: boolean | ||
| linkTableTitleProperties?: boolean | ||
| isLinkCollectionToUrlProperty?: boolean | ||
| alignCenter?: boolean | ||
|
|
||
| showTableOfContents?: boolean | ||
| minTableOfContentsItems?: number | ||
|
|
@@ -169,6 +171,7 @@ const defaultNotionContext: NotionContext = { | |
| showCollectionViewDropdown: true, | ||
| linkTableTitleProperties: true, | ||
| isLinkCollectionToUrlProperty: false, | ||
| alignCenter: true, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is alignCenter: false, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The default value was center-aligned, so I set it to true. |
||
|
|
||
| showTableOfContents: false, | ||
| minTableOfContentsItems: 3, | ||
|
|
||