fixed structure filetree chapter:

master
Kenton Hamaluik 5 years ago
parent 76b22976fc
commit 015550f275

@ -78,12 +78,12 @@ The order of the book is based on the alphabetical order of the file names (actu
```
src/
├── mkbook.toml
├── README.md
├── 00-foreword.md
├── 01-introduction.md
├── my-picture.jpg
└── 02-my-first-chapter
├── index.md
├── README.md
├── 01-my-first-section.md
├── 02-my-second-section.md
└── etc...

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//01-introduction/index.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//02-markdown/01-commonmark.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//02-markdown/02-syntax-highlighting.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//02-markdown/03-plantuml-diagrams.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//02-markdown/04-katex-formulas.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css" integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous">
</head>
<body>

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//02-markdown/05-images.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//02-markdown/index.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//03-frontmatter/index.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//04-structure/index.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>
@ -179,12 +179,12 @@
<p>The order of the book is based on the alphabetical order of the file names (actually its based on Rusts <a href="https://doc.rust-lang.org/std/cmp/trait.PartialOrd.html#impl-PartialOrd%3Cstr%3E">implementation of <code>PartialOrd</code> for str</a>). Thus, it is recommended to lay out your book chapters with manual numbering of the file names, as such:</p>
<pre style="background-color:#2d2d2d;">
<span style="color:#d3d0c8;">src/
</span><span style="color:#d3d0c8;">├── mkbook.toml
</span><span style="color:#d3d0c8;">├── README.md
</span><span style="color:#d3d0c8;">├── 00-foreword.md
</span><span style="color:#d3d0c8;">├── 01-introduction.md
</span><span style="color:#d3d0c8;">├── my-picture.jpg
</span><span style="color:#d3d0c8;">└── 02-my-first-chapter
</span><span style="color:#d3d0c8;"> ├── index.md
</span><span style="color:#d3d0c8;"> ├── README.md
</span><span style="color:#d3d0c8;"> ├── 01-my-first-section.md
</span><span style="color:#d3d0c8;"> ├── 02-my-second-section.md
</span><span style="color:#d3d0c8;"> └── etc...

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//05-customization/index.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>

@ -12,7 +12,7 @@
<meta property="og:url" content="https://hamaluik.github.io/mkbook//06-how-it-works/index.html" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body>

@ -14,14 +14,14 @@
&lt;p&gt;This tool aims to work somewhat similarly to &lt;em&gt;mdbook&lt;&#x2f;em&gt;, but is generally intended to be a more minimal alternative that is customized more towards my needs and desires than anything else.&lt;&#x2f;p&gt;
" />
<meta property="book:author" content="Kenton Hamaluik" />
<meta property="book:release_date" content="2019-12-06T03:25:18.292661806+00:00" />
<meta property="book:release_date" content="2019-12-06T03:28:49.197208351+00:00" />
</head>
<body class="toc">
<header>
<h1>The mkbook Book</h1>
<h2>by Kenton Hamaluik</h2>
<time datetime="2019-12-06T03:25:18.292661806+00:00">Dec 6, 2019</time>
<time datetime="2019-12-06T03:28:49.197208351+00:00">Dec 6, 2019</time>
</header>
<article>
<p><em>mkbook</em> is my simpler alternative to <a href="https://crates.io/crates/mdbook">mdbook</a> which is a great tool, but for which I really dislike some of the decisions they took, such as relying on javascript for highlighting and navigation, and including a lot of bells and whistles such as javascript-based search.</p>

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save