Skip to content

Commit cead8e3

Browse files
committed
✨ feat: update TOC
1 parent 1e5ae7d commit cead8e3

File tree

2 files changed

+26
-27
lines changed

2 files changed

+26
-27
lines changed

README.md

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -173,28 +173,27 @@ The following is a detailed table of contents for Understanding Astro.
173173

174174
- ## [A partial hydration islands architecture implementation](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#a-partial-hydration-islands-architecture-implementation)
175175

176-
- [Objectives](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#objectives)
176+
- ### [Objectives](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#objectives)
177177

178-
- [Installation](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#installation)
178+
- ### [Installation](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#installation)
179179

180-
- [API design](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#api-design)
180+
- ### [API design](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#api-design)
181181

182-
- [Getting started](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#getting-started)
182+
- ### [Getting started](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#getting-started)
183183

184-
- [Leveraging the content template element](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#leveraging-the-content-template-element)
184+
- ### [Leveraging the content template element](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#leveraging-the-content-template-element)
185185

186-
- [Handling lazy hydration via “client:” attributes](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#handling-lazy-hydration-via-client-attributes)
186+
- ### [Handling lazy hydration via “client:” attributes](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#handling-lazy-hydration-via-client-attributes)
187187

188-
- [Supporting the client:idle and client:media conditions](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#supporting-the-clientidle-and-clientmedia-conditions)
188+
- #### [Supporting the client:idle and client:media conditions](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#supporting-the-clientidle-and-clientmedia-conditions)
189+
- #### [waitForIdle](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#waitforidle)
190+
- #### [waitForMedia](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#waitformedia)
189191

190-
- [waitForIdle](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#waitforidle)
191-
- [waitForMedia](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#waitformedia)
192+
- ### [Supporting frameworks: Vue, Petite-vue and Preact](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#supporting-frameworks-vue-petite-vue-and-preact)
192193

193-
- [Supporting frameworks: Vue, Petite-vue and Preact](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#supporting-frameworks-vue-petite-vue-and-preact)
194-
195-
- [Vue](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#vue)
196-
- [Petite-vue](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#petite-vue)
197-
- [Preact](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#preact)
194+
- #### [Vue](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#vue)
195+
- #### [Petite-vue](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#petite-vue)
196+
- #### [Preact](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#preact)
198197

199198
- ## [Conclusion](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch3.md#conclusion)
200199

@@ -301,25 +300,25 @@ TBD ...
301300

302301
- ## [Dynamic routes](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#dynamic-routes)
303302

304-
- [1. Named parameters](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#1-named-parameters)
305-
- [2. Rest parameters](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#2-rest-parameters)
306-
- [Priority order](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#priority-order)
303+
- ### [1. Named parameters](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#1-named-parameters)
304+
- ### [2. Rest parameters](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#2-rest-parameters)
305+
- ### [Priority order](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#priority-order)
307306

308307
- ## [Server endpoints](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#server-endpoints)
309308

310-
- [Creating server endpoints](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#creating-server-endpoints)
311-
- [Request details](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#request-details)
312-
- [Dynamic API routes](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#dynamic-api-routes)
313-
- [Dedicated api directory](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#dedicated-api-directory)
314-
- [Supporting other HTTP methods](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#supporting-other-http-methods)
309+
- ### [Creating server endpoints](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#creating-server-endpoints)
310+
- ### [Request details](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#request-details)
311+
- ### [Dynamic API routes](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#dynamic-api-routes)
312+
- ### [Dedicated api directory](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#dedicated-api-directory)
313+
- ### [Supporting other HTTP methods](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#supporting-other-http-methods)
315314

316315
- ## [Streams, oh streams](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#streams-oh-streams)
317316

318-
- [What is server streaming?](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#what-is-server-streaming)
319-
- [Why should we bother?](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#why-should-we-bother)
320-
- [Streaming is easy yet difficult](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#streaming-is-easy-yet-difficult)
321-
- [Server streaming in Astro](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#server-streaming-in-astro)
322-
- [Taking advantage of streaming](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#taking-advantage-of-streaming)
317+
- ### [What is server streaming?](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#what-is-server-streaming)
318+
- ### [Why should we bother?](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#why-should-we-bother)
319+
- ### [Streaming is easy yet difficult](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#streaming-is-easy-yet-difficult)
320+
- ### [Server streaming in Astro](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#server-streaming-in-astro)
321+
- ### [Taking advantage of streaming](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#taking-advantage-of-streaming)
323322

324323
- ## [Conclusion](https://github.com/understanding-astro/understanding-astro-book/blob/master/ch6.md#conclusion)
325324

images/ch-2.png

10.8 KB
Loading

0 commit comments

Comments
 (0)