mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 12:49:03 +00:00
feat(outliner): hide builtin floating toc when outliner is enabled
This commit is contained in:
parent
7dde3b8b3c
commit
d651b5ceea
@ -40,6 +40,17 @@ export default async (api, db) => {
|
|||||||
</section>`,
|
</section>`,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const replaceFloatingOutline = await db.get("replaceFloatingOutline");
|
||||||
|
if (replaceFloatingOutline) {
|
||||||
|
document.head.append(html`<style>
|
||||||
|
.hide-scrollbar.ignore-scrolling-container:has(
|
||||||
|
div:empty[style*="width"]
|
||||||
|
) {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
</style>`);
|
||||||
|
}
|
||||||
|
|
||||||
let $page, $scroller;
|
let $page, $scroller;
|
||||||
const getHeadings = () => {
|
const getHeadings = () => {
|
||||||
if (!$page) return [];
|
if (!$page) return [];
|
||||||
|
@ -3,7 +3,9 @@
|
|||||||
"version": "0.5.0",
|
"version": "0.5.0",
|
||||||
"id": "87e077cc-5402-451c-ac70-27cc4ae65546",
|
"id": "87e077cc-5402-451c-ac70-27cc4ae65546",
|
||||||
"description": "Adds a table of contents to the side panel to overview and navigate the current page's headings and subheadings.",
|
"description": "Adds a table of contents to the side panel to overview and navigate the current page's headings and subheadings.",
|
||||||
"tags": ["panel"],
|
"tags": [
|
||||||
|
"panel"
|
||||||
|
],
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "dragonwocky",
|
"name": "dragonwocky",
|
||||||
@ -28,7 +30,15 @@
|
|||||||
"key": "equationRendering",
|
"key": "equationRendering",
|
||||||
"description": "Attempts to render special symbols from inline equations in headings. Note that position- and size-based formatting will be lost when displaying equations in the Outliner's table of contents. Disable this to display the raw TeX equation instead.",
|
"description": "Attempts to render special symbols from inline equations in headings. Note that position- and size-based formatting will be lost when displaying equations in the Outliner's table of contents. Disable this to display the raw TeX equation instead.",
|
||||||
"value": true
|
"value": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "toggle",
|
||||||
|
"key": "replaceFloatingOutline",
|
||||||
|
"description": "Disables Notion's builtin floating table of contents for a complete switch to the Outliner.",
|
||||||
|
"value": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"clientScripts": ["client.mjs"]
|
"clientScripts": [
|
||||||
}
|
"client.mjs"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user