--- title: Markdown Test date: 2026-06-07 published: false tags: [blog, nix, astro] --- # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 This is a normal paragraph with **bold text**, *italic text*, and `inline code`. You can also combine **_bold and italic_**. --- > This is a blockquote. It can span multiple lines and is great for quoting someone or highlighting something important. --- ## Links and Images [Visit Gitea](https://git.cyperpunk.de) ![Square Image](http://localhost:4321/avatar.jpg) ![Landscape Image](https://images8.alphacoders.com/560/thumb-1920-560986.jpg) ![Portrait Image](https://mfiles.alphacoders.com/101/thumb-1920-1012746.jpeg) --- ## Lists Unordered: - Item one - Item two - Nested item - Another nested item - Item three Ordered: 1. First 2. Second 3. Third ToDo - [ ] Task 1 - [x] Task 2 --- ## Code Inline: `pnpm dev` Block: ```bash pnpm add @astrojs/rss pnpm dev pnpm build ``` ```ts const posts = await getCollection('posts'); posts.sort((a, b) => b.data.date.valueOf() - a.data.date.valueOf()); ``` --- ## Table | Name | Role | OS | |------------|-------------------|-------| | DerGrumpf | Media Scientist | NixOS | | Phil | Programmer | Linux | --- ## Horizontal Rule Above this line is a horizontal rule. --- ~~Strikethrough text~~ is also supported. > [!NOTE] > This is a note. > >Test > [!WARNING] > This is a warning. > [!TIP] > This is a tip. > [!IMPORTANT] > This is important. > [!CAUTION] > This is a caution.