table of content

 1. Hello World!
  2. Test of All Markup Elements
   3. Headings
 4. Heading 1
  5. Heading 2
   6. Heading 3
    7. Heading 4
     8. Heading 5
      9. Heading 6
   10. Emphasis
   11. Footnotes
   12. Lists
    13. Unordered Lists
    14. Ordered Lists
    15. Task Lists
   16. Links
   17. Images
   18. Code
    19. Code Blocks
   20. Horizontal Rule
   21. Blockquote
  22. Footnotes

Hello World!

Hello! This is the obligatory “hello world” article I make for every new iteration of this site! This new version runs on Astro and uses SCSS for styling.

Test of All Markup Elements

Headings

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Emphasis

Footnotes

Foot1Note2

Lists

Unordered Lists

Ordered Lists

  1. First Item
  2. Second Item
    1. Subitem 1
    2. Subitem 2
  3. Third Item

Task Lists

Images

my discord profile picture

funny businessman stock image

Code

Code Blocks

@mixin block {
	position: relative;
	background-color: #374145;
	padding: 20px;
	width: 1000px;

	&::before {
		content: "";
		background-color: #2e383c;
		position: absolute;
		z-index: -1;

		top: 15px;
		left: 15px;

		width: 100%;
		height: 100%;

		transition: top 0.3s ease-in, left 0.3s ease-in;
	}

	&:hover {
		&::before {
			top: -15px;
			left: -15px;
		}
	}
}
use std::mem::transmute;

const STR: &str = "\u{200b}aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";

fn main() {
    let mut i: usize = 0;

    i += 1;

    _ = unsafe {
        mem::transmute::<usize, isize>(i)
    };
}
code block without a language.

Horizontal Rule


Blockquote

If I am selling to you, I speak your language. If I am buying, dann müssen sie Deutsch sprechen

- Willy Brandt

i love (re)making (my) website (every 14 days)

- loudsynth

Footnotes

  1. Foot

  2. Note