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"
description: "Features, enhancements, and changes."
date: "2024-05-09"
title: Everything new in Astro Micro
description: Features, enhancements, and changes.
date: '2024-05-09'
---
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 [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)

View file

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

View file

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

View file

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

View file

@ -1,11 +1,12 @@
---
title: "Markdown syntax guide"
description: "Get started writing content in Markdown."
date: "2024-03-17"
title: Markdown syntax guide
description: Get started writing content in Markdown.
date: '2024-03-17'
tag:
- reference
---
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.
---

View file

@ -1,11 +1,14 @@
---
title: "MDX syntax guide"
description: "Use interactive components in Markdown."
date: "2024-03-16"
title: MDX syntax guide
description: Use interactive components in Markdown.
date: '2024-03-16'
tags:
- reference
- client-directives
- markdown-and-mdx-pages
---
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.
```astro
import DateComp from "../../../components/FormattedDate.astro";
import DateComp from "@/components/FormattedDate.astro";
<DateComp date={new Date()} />
```
import FormattedDate from "../../../components/FormattedDate.astro";
import FormattedDate from "@/components/FormattedDate.astro";
<FormattedDate date={new Date()} />
@ -55,7 +58,7 @@ By default Micro has zero frameworks installed. If you install a framework, comp
<Callout>
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.
</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)
- [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)
- [Client Directives](https://docs.astro.build/en/reference/directives-reference/#client-directives)
- [Astro Usage Documentation](https://docs.astro.build/en/guides/markdown-content/)
- [Client Directives](https://docs.astro.build/en/reference/directives-reference/)

View file

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

View file

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

View file

@ -1,11 +1,13 @@
---
title: "Chronological pagination example"
description: "Pagination works regardless of folder name."
date: "2024-03-21"
title: Chronological pagination example
description: Pagination works regardless of folder name.
date: '2024-03-21'
tags:
- example
---
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.

View file

@ -1,11 +1,12 @@
---
title: "Astro Sphere"
description: "Portfolio and blog build with astro."
date: "03/18/2024"
demoURL: "https://astro-sphere-demo.vercel.app"
repoURL: "https://github.com/markhorn-dev/astro-sphere"
title: Astro Sphere
description: Portfolio and blog build with astro.
date: 03/18/2024
demoURL: https://astro-sphere-demo.vercel.app
repoURL: https://github.com/markhorn-dev/astro-sphere
---
![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.
@ -77,3 +78,4 @@ Replace npm with your package manager of choice. `npm`, `pnpm`, `yarn`, `bun`, e
## 🏛️ License
MIT

View file

@ -1,11 +1,12 @@
---
title: "Astro Nano"
description: "Minimal portfolio and blog build with astro and no frameworks."
date: "2024-03-26"
demoURL: "https://astro-nano-demo.vercel.app"
repoURL: "https://github.com/markhorn-dev/astro-nano"
title: Astro Nano
description: Minimal portfolio and blog build with astro and no frameworks.
date: '2024-03-26'
demoURL: https://astro-nano-demo.vercel.app
repoURL: https://github.com/markhorn-dev/astro-nano
---
![Astro Nano](/astro-nano.png)
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
MIT

View file

@ -1,11 +1,12 @@
---
title: "Astro Micro"
description: "Astro Micro is an accessible and lightweight blog."
date: "2024-05-26"
demoURL: "https://astro-micro.vercel.app"
repoURL: "https://github.com/trevortylerlee/astro-micro"
title: Astro Micro
description: Astro Micro is an accessible and lightweight blog.
date: '2024-05-26'
demoURL: https://astro-micro.vercel.app
repoURL: https://github.com/trevortylerlee/astro-micro
---
![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.
@ -43,3 +44,4 @@ and [more](/blog/00-micro-changelog).
## 💯 Lighthouse score
![Astro Nano Lighthouse Score](/astro-nano-lighthouse.jpg)