github.com/SamarSidharth/kpt@v0.0.0-20231122062228-c7d747ae3ace/site/static/js/config.js (about) 1 window.$docsify = { 2 name: `<img src="/static/images/logo.png" alt="kpt" />`, 3 nameLink: window.location.origin, 4 search: { 5 maxAge: 43200000, 6 placeholder: "Search", 7 paths: "auto", 8 }, 9 loadSidebar: "sidebar.md", 10 alias: { 11 "/*.*/sidebar.md": "/sidebar.md", 12 }, 13 coverpage: "coverpage.md", 14 crossOriginLinks: [ 15 "https://catalog.kpt.dev/", 16 "https://googlecontainertools.github.io/kpt/installation/", 17 ], 18 auto2top: true, 19 repo: "true", 20 pagination: { 21 previousText: 'PREV', 22 nextText: 'NEXT', 23 crossChapter: true 24 }, 25 corner: { 26 url: "https://github.com/GoogleContainerTools/kpt", 27 icon: "github", 28 }, 29 routerMode: "history", 30 markdown: { 31 renderer: { 32 image: function (href, title) { 33 return `<img src="${href}" data-origin="${href}" alt="${title}">`; 34 }, 35 }, 36 }, 37 };