Skip to content

Commit

Permalink
index update
Browse files Browse the repository at this point in the history
index, classed removed
  • Loading branch information
daniel08garcia committed Mar 15, 2024
1 parent 998f7fb commit eb75ac7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion createToC.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function createTableOfContents(dir, depth = 0) {

if (stats.isDirectory()) {
// Recursively traverse subdirectories
tableOfContents += `<li><span class="folder">${file}</span><ul>`;
tableOfContents += `<li>${file}<ul>`;
tableOfContents += createTableOfContents(filePath, depth + 1);
tableOfContents += `</ul></li>`;
} else {
Expand Down
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
<h1>&Iacute;ndice</h1>
<ul>
<li>
<span class="folder">XIX</span>
XIX
<ul>
<li>
<span class="folder">Edward Payson D D</span>
Edward Payson D D
<ul>
<li>
<a
Expand Down Expand Up @@ -84,10 +84,10 @@ <h1>&Iacute;ndice</h1>
</ul>
</li>
<li>
<span class="folder">XX</span>
XX
<ul>
<li>
<span class="folder">C H Spurgeon</span>
C H Spurgeon
<ul>
<li>
<a href="siglo\XX\C H Spurgeon\Lo Que Uno Mismo Merece.html"
Expand Down

0 comments on commit eb75ac7

Please sign in to comment.