sync: update content from obsidian vault

This commit is contained in:
Obsidian Sync 2026-02-20 05:42:47 +05:30
parent 84749c8d9b
commit b82752c120
12 changed files with 233 additions and 208 deletions

View file

@ -1,9 +1,10 @@
--- ---
title: "Everything new in Astro Micro" title: Everything new in Astro Micro
description: "Features, enhancements, and changes." description: Features, enhancements, and changes.
date: "2024-05-09" date: '2024-05-09'
--- ---
import Callout from "@/components/Callout.astro"; import Callout from "@/components/Callout.astro";
--- ---
@ -110,3 +111,4 @@ No active issues!
- Fixed by [anaxite](https://github.com/anaxite): [Update Astro to 5.0](https://github.com/trevortylerlee/astro-micro/issues/73) - Fixed by [anaxite](https://github.com/anaxite): [Update Astro to 5.0](https://github.com/trevortylerlee/astro-micro/issues/73)
- Fixed by [MoyaF](https://github.com/MoyaF): [Table of Contents links not working](https://github.com/trevortylerlee/astro-micro/issues/75) - Fixed by [MoyaF](https://github.com/MoyaF): [Table of Contents links not working](https://github.com/trevortylerlee/astro-micro/issues/75)
- Fixed by [antoniovalentini](https://github.com/antoniovalentini): [Possible bugs due to outdated Astro version 5.0.3](https://github.com/trevortylerlee/astro-micro/issues/78) - Fixed by [antoniovalentini](https://github.com/antoniovalentini): [Possible bugs due to outdated Astro version 5.0.3](https://github.com/trevortylerlee/astro-micro/issues/78)

View file

@ -1,7 +1,7 @@
--- ---
title: "Getting started" title: Getting started
description: "Hit the ground running." description: Hit the ground running.
date: "2024-03-22" date: '2024-03-22'
tags: tags:
- tutorial - tutorial
--- ---
@ -180,3 +180,4 @@ const setGiscusTheme = () => {
} }
}; };
``` ```

View file

@ -1,11 +1,12 @@
--- ---
title: "Blog Collection" title: Blog Collection
description: "How to add posts to the blog." description: How to add posts to the blog.
date: "2024-03-21" date: '2024-03-21'
tags: tags:
- tutorial - tutorial
--- ---
--- ---
## Working with the `blog` collection: ## Working with the `blog` collection:
@ -67,3 +68,4 @@ tags:
## Working with the blog collection ## Working with the blog collection
<!-- content --> <!-- content -->
``` ```

View file

@ -1,11 +1,12 @@
--- ---
title: "Projects Collection" title: Projects Collection
description: "How to add projects to your portfolio." description: How to add projects to your portfolio.
date: "2024-03-20" date: '2024-03-20'
tags: tags:
- tutorial - tutorial
--- ---
--- ---
## Working with the `projects` collection ## Working with the `projects` collection
@ -62,3 +63,4 @@ draft: false;
## Astro Micro 🔬 ## Astro Micro 🔬
<!-- content --> <!-- content -->
``` ```

View file

@ -1,11 +1,12 @@
--- ---
title: "Markdown syntax guide" title: Markdown syntax guide
description: "Get started writing content in Markdown." description: Get started writing content in Markdown.
date: "2024-03-17" date: '2024-03-17'
tag: tag:
- reference - reference
--- ---
import Callout from "@/components/Callout.astro"; import Callout from "@/components/Callout.astro";
--- ---
@ -398,3 +399,4 @@ function hello() {
Refer to [markdownguide.org](https://www.markdownguide.org/) for best practices as well as extended syntax. Refer to [markdownguide.org](https://www.markdownguide.org/) for best practices as well as extended syntax.
--- ---

View file

@ -1,11 +1,14 @@
--- ---
title: "MDX syntax guide" title: MDX syntax guide
description: "Use interactive components in Markdown." description: Use interactive components in Markdown.
date: "2024-03-16" date: '2024-03-16'
tags: tags:
- reference - reference
- client-directives
- markdown-and-mdx-pages
--- ---
import Callout from "@/components/Callout.astro"; import Callout from "@/components/Callout.astro";
--- ---
@ -22,12 +25,12 @@ Importing a component from the `/components` directory.
This component accepts a Javascript date object and format it as a string. This component accepts a Javascript date object and format it as a string.
```astro ```astro
import DateComp from "../../../components/FormattedDate.astro"; import DateComp from "@/components/FormattedDate.astro";
<DateComp date={new Date()} /> <DateComp date={new Date()} />
``` ```
import FormattedDate from "../../../components/FormattedDate.astro"; import FormattedDate from "@/components/FormattedDate.astro";
<FormattedDate date={new Date()} /> <FormattedDate date={new Date()} />
@ -55,7 +58,7 @@ By default Micro has zero frameworks installed. If you install a framework, comp
<Callout> <Callout>
Don't forget to use [client Don't forget to use [client
directives](https://docs.astro.build/en/reference/directives-reference/#client-directives) directives](https://docs.astro.build/en/reference/directives-reference/)
to make framework components interactive. to make framework components interactive.
</Callout> </Callout>
@ -69,5 +72,6 @@ By default Micro has zero frameworks installed. If you install a framework, comp
- [MDX Syntax Documentation](https://mdxjs.com/docs/what-is-mdx) - [MDX Syntax Documentation](https://mdxjs.com/docs/what-is-mdx)
- [Astro Framework Integrations](https://docs.astro.build/en/guides/integrations-guide) - [Astro Framework Integrations](https://docs.astro.build/en/guides/integrations-guide)
- [Astro Usage Documentation](https://docs.astro.build/en/guides/markdown-content/#markdown-and-mdx-pages) - [Astro Usage Documentation](https://docs.astro.build/en/guides/markdown-content/)
- [Client Directives](https://docs.astro.build/en/reference/directives-reference/#client-directives) - [Client Directives](https://docs.astro.build/en/reference/directives-reference/)

View file

@ -1,9 +1,11 @@
--- ---
title: "Year sorting example" title: Year sorting example
description: "Nano groups posts by year." description: Nano groups posts by year.
date: "2023-12-31" date: '2023-12-31'
tags: tags:
- example - example
--- ---
This post is to demonstrate the year sorting capabilities. This post is to demonstrate the year sorting capabilities.

View file

@ -1,12 +1,14 @@
--- ---
title: "Draft example" title: Draft example
description: "Setting draft flag to true to hide this post." description: Setting draft flag to true to hide this post.
date: "2022-12-31" date: '2022-12-31'
draft: false draft: false
tags: tags:
- example - example
--- ---
This post also demonstrates the year sorting capabilities. This post also demonstrates the year sorting capabilities.
Try setting this file's metadata to `draft: true`. Try setting this file's metadata to `draft: true`.

View file

@ -1,11 +1,13 @@
--- ---
title: "Chronological pagination example" title: Chronological pagination example
description: "Pagination works regardless of folder name." description: Pagination works regardless of folder name.
date: "2024-03-21" date: '2024-03-21'
tags: tags:
- example - example
--- ---
This post should show up in proper chronological order even though its folder comes last in the `content/blog` directory. This post should show up in proper chronological order even though its folder comes last in the `content/blog` directory.
The `Previous Post` and `Next Post` buttons under each blog post should also keep the proper chronological order, based on the frontmatter `date` field. The `Previous Post` and `Next Post` buttons under each blog post should also keep the proper chronological order, based on the frontmatter `date` field.

View file

@ -1,11 +1,12 @@
--- ---
title: "Astro Sphere" title: Astro Sphere
description: "Portfolio and blog build with astro." description: Portfolio and blog build with astro.
date: "03/18/2024" date: 03/18/2024
demoURL: "https://astro-sphere-demo.vercel.app" demoURL: https://astro-sphere-demo.vercel.app
repoURL: "https://github.com/markhorn-dev/astro-sphere" repoURL: https://github.com/markhorn-dev/astro-sphere
--- ---
![Astro Sphere](/astro-sphere.jpg) ![Astro Sphere](/astro-sphere.jpg)
Astro Sphere is a static, minimalist, lightweight, lightning fast portfolio and blog theme based on Mark Horn's personal website. Astro Sphere is a static, minimalist, lightweight, lightning fast portfolio and blog theme based on Mark Horn's personal website.
@ -77,3 +78,4 @@ Replace npm with your package manager of choice. `npm`, `pnpm`, `yarn`, `bun`, e
## 🏛️ License ## 🏛️ License
MIT MIT

View file

@ -1,11 +1,12 @@
--- ---
title: "Astro Nano" title: Astro Nano
description: "Minimal portfolio and blog build with astro and no frameworks." description: Minimal portfolio and blog build with astro and no frameworks.
date: "2024-03-26" date: '2024-03-26'
demoURL: "https://astro-nano-demo.vercel.app" demoURL: https://astro-nano-demo.vercel.app
repoURL: "https://github.com/markhorn-dev/astro-nano" repoURL: https://github.com/markhorn-dev/astro-nano
--- ---
![Astro Nano](/astro-nano.png) ![Astro Nano](/astro-nano.png)
Astro Nano is a static, minimalist, lightweight, lightning fast portfolio and blog theme. Astro Nano is a static, minimalist, lightweight, lightning fast portfolio and blog theme.
@ -80,3 +81,4 @@ Replace npm with your package manager of choice. `npm`, `pnpm`, `yarn`, `bun`, e
## 🏛️ License ## 🏛️ License
MIT MIT

View file

@ -1,11 +1,12 @@
--- ---
title: "Astro Micro" title: Astro Micro
description: "Astro Micro is an accessible and lightweight blog." description: Astro Micro is an accessible and lightweight blog.
date: "2024-05-26" date: '2024-05-26'
demoURL: "https://astro-micro.vercel.app" demoURL: https://astro-micro.vercel.app
repoURL: "https://github.com/trevortylerlee/astro-micro" repoURL: https://github.com/trevortylerlee/astro-micro
--- ---
![Astro Micro](/astro-micro.jpg) ![Astro Micro](/astro-micro.jpg)
Astro Micro is an accessible theme for Astro. It's a fork of Mark Horn's popular theme Astro Nano. Like Nano, Micro comes with zero frameworks installed. Astro Micro is an accessible theme for Astro. It's a fork of Mark Horn's popular theme Astro Nano. Like Nano, Micro comes with zero frameworks installed.
@ -43,3 +44,4 @@ and [more](/blog/00-micro-changelog).
## 💯 Lighthouse score ## 💯 Lighthouse score
![Astro Nano Lighthouse Score](/astro-nano-lighthouse.jpg) ![Astro Nano Lighthouse Score](/astro-nano-lighthouse.jpg)