This commit is contained in:
Miha
2024-10-31 09:49:06 -07:00
parent 6231bab9e5
commit 447d90f4d6
98 changed files with 749 additions and 1651 deletions
+11 -25
View File
@@ -7,7 +7,7 @@
<meta name="description" content="Documentation for QuanTAlib, a quantitative technical analysis library">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/katex.min.css" integrity="sha384-3UiQGuEI4TTMaFmGIZumfRPtfKQ3trwQE2JgosJxCnGmQpL/lJdjpcHkaaFwHlcI" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css" />
</head>
<body>
<div id="app"></div>
@@ -19,28 +19,20 @@
loadSidebar: true,
auto2top: true,
mergeNavbar: true,
sidebarDisplayLevel: 0, // Add this line to collapse all sidebar items initially
search: {
maxAge: 86400000,
paths: 'auto',
placeholder: 'Type to search',
noData: 'No Results!',
depth: 6,
hideOtherSidebarContent: false,
},
pagination: {
previousText: 'Previous',
nextText: 'Next',
crossChapter: true,
crossChapterText: true,
},
sidebarDisplayLevel: 0,
maxAge: 86400000,
paths: 'auto',
placeholder: 'Type to search',
noData: 'No Results!',
depth: 6,
hideOtherSidebarContent: false,
themeable: {
readyTransition: true,
responsiveTables: true
},
latex: {
inlineMath: [['$', '$'], ['\\(', '\\)']],
displayMath: [['$$', '$$']],
displayMath: [['$$', '$$']]
},
executeScript: true,
externalLinkTarget: '_blank',
@@ -49,15 +41,9 @@
toc: {
scope: '.markdown-section',
headings: 'h1, h2, h3, h4, h5, h6',
title: 'Table of Contents',
title: 'Table of Contents'
},
copyCode: {
buttonText: 'Copy to clipboard',
errorText: 'Error',
successText: 'Copied'
},
plugins: [
]
plugins: []
};
</script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js" integrity="sha384-KaHhgnx/OTLoJ4J33SSJsF4x1pk4I7q3s5ZOfIDHJYl6IG7Oyn2vNDsHiWJe46fD" crossorigin="anonymous"></script>