您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically adds a table of contents to Kanka entity pages under the Pins sidebar.
当前为
- // ==UserScript==
- // @name Kanka Automatic Table of Contents
- // @namespace http://tampermonkey.net/
- // @version 4
- // @description Automatically adds a table of contents to Kanka entity pages under the Pins sidebar.
- // @author Salvatos
- // @match https://kanka.io/*
- // @exclude */html-export
- // @icon https://www.google.com/s2/favicons?domain=kanka.io
- // @grant GM_addStyle
- // ==/UserScript==
- // Run only on entity Story pages
- if (document.getElementById('app').parentNode.classList.contains("entity-story")) {
- GM_addStyle(`
- .entity-links {
- margin-bottom: 20px;
- }
- div#toc h3 {
- text-align: center;
- margin: 0 0 10px;
- font-family: Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;
- font-weight: bold;
- font-size: 17px;
- color: #444;
- }
- #tableofcontent, #tableofcontent ul {
- list-style: none;
- padding: 0;
- text-indent: -5px;
- }
- #tableofcontent {
- padding: 0 10px;
- overflow: hidden;
- word-wrap: anywhere;
- }
- #tableofcontent ul {
- padding-left: 10px;
- }
- #tableofcontent a {
- font-size: 14px;
- color: #3e456c;
- }
- #tableofcontent li.toc-level-0 a {
- font-weight: bold;
- }
- #tableofcontent .text-muted {
- display: none;
- }
- .to-top {
- vertical-align: super;
- font-variant: all-petite-caps;
- font-size: 10px;
- }
- `);
- /* Set arrays */
- var headings = [];
- var tag_names = { h1:1, h2:1, h3:1, h4:1, h5:1, h6:1 };
- /* Pre-cleaning: remove stray line breaks left by Summernote at the end of headings so our TOP link doesn't get pushed to a new line */
- $('h1 br:last-child, h2 br:last-child, h3 br:last-child, h4 br:last-child, h5 br:last-child, h6 br:last-child').remove();
- /* Walks through DOM looking for selected elements */
- function walk( root ) {
- if( root.nodeType === 1 && root.nodeName !== 'script' && !root.classList.contains("calendar") && !root.classList.contains("modal") ) { // Added a check to exclude modals and calendar dates
- if( tag_names.hasOwnProperty(root.nodeName.toLowerCase()) ) {
- headings.push( root );
- } else {
- for( var i = 0; i < root.childNodes.length; i++ ) {
- walk( root.childNodes[i] );
- }
- }
- }
- }
- walk( document.getElementsByClassName('entity-story-block')[0] );
- /* Start main list */
- var level =0;
- var past_level = 0;
- var hList= `
- <div id='toc' class='box box-solid' style='padding:10px;'>
- <h3>Table of contents</h3>
- <ul id='tableofcontent'>
- `;
- /* Create sublists to reflect heading level */
- for( var i = 0; i < headings.length; i++ ) {
- // "Entry", Mentions and post titles act as level-0 headers
- level = (headings[i].classList.contains("box-title")) ? 0 : headings[i].nodeName.substr(1);
- if (level > past_level) { // Go down a level
- for(var j = 0; j < level - past_level; j++) {
- hList += "<li><ul>";
- }
- }
- else if (level < past_level) { // Go up a level
- for(var j = 0; j < past_level - level; j++) {
- hList += "</ul></li>";
- }
- }
- /* Handle heading text (it gets complicated with Timeline elements and inline tags) */
- var headingText = headings[i],
- child = headingText.firstChild,
- texts = [];
- // Iterate through heading nodes
- while (child) {
- // Not a tag (text node)
- if (!child.tagName) {
- texts.push(child.data);
- }
- // Tag but not a Timeline date
- else if (!$(child).hasClass("text-muted")) {
- texts.push(child.innerText);
- }
- // Text-muted tag, i.e. a Timeline date
- else {
- texts.push('<span class="text-muted">' + child.innerText + '</span>');
- }
- child = child.nextSibling;
- }
- headingText = texts.join("");
- /* Create ID anchor on header */
- headings[i].id = "h" + level + "-" + headingText.replace(/\s/g, "");
- /* Create link in TOC */
- hList += "<li class='toc-level-" + level + "'><a href='#" + headings[i].id + "'>" + headingText + "</a></li>";
- /* Add "top" link to header */
- headings[i].insertAdjacentHTML("beforeend", "<a class='to-top' href='#toc'> ^ top</a>");
- /* Update past_level */
- past_level = level;
- }
- /* Close sublists per current level */
- for(var k = 0; k < past_level; k++) {
- hList += "</li></ul>";
- }
- /* Close TOC */
- hList += "</div>";
- /* Insert element after Pins (and entity links) */
- /* Calendars use only one sidebar */
- if (document.getElementById('app').parentNode.classList.contains("kanka-entity-calendar")) {
- document.getElementsByClassName('entity-sidebar-submenu')[0].insertAdjacentHTML("beforeend", hList);
- }
- /* Everything else */
- else {
- document.getElementsByClassName('entity-sidebar-pins')[0].insertAdjacentHTML("beforeend", hList);
- }
- }