Skip to content

Commit

Permalink
test: add more testing
Browse files Browse the repository at this point in the history
- inline html
- more code
  • Loading branch information
xNaCly committed Apr 13, 2023
1 parent 88b65ca commit 4b7bb4b
Showing 1 changed file with 85 additions and 8 deletions.
93 changes: 85 additions & 8 deletions test.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,105 @@
# Heading 1

> This is a blockquote
---
<h1 class="heading" id="this-is-the-first-heading">
This is the first heading
</h1>

> This is a
> tripple line
> blockquote
This paragraph contains _italic_ and **bold** elements.

This is a paragraph containing an `inline code *_[]#!()` element (with special characters) and an inline hash: # as well as inline dash: -.
This is a paragraph containing an `inline code *_[]#!()` element (_with special characters_) and an inline hash: # as well as inline dash: -.

```js
console.log("test");

let a = [3, 5, 1, 2, 6];
a.sort((x, y) => x - y));

// this is sorted asc 😳
console.log(a);

```

This paragraph contains _italic_ and **bold** elements.
This code block is split ^o^

```
// bit wise in forEach?
a.forEach((x)=>{
console.log(x & 1);
});
// new rentner 🧓
let rentner = {
name: "Gerald",
age: 28,
car: "911"
}
```

Now a better programming language:

```go
package main

import "log"

func main(){
log.Println("Hello world!")
}
```

And now an even better programming language:

```c
#include <stdio.h>
#include <stdlib.h>

int main(void){
for (int i = 0; i < 10; i++){
if (i % 3 == 0) {
printf("divisible by 3\n");
} else if (i % 5 == 0){
printf("divisible by 5\n");
} else if (i % 15 == 0){
printf("divisible by 5 & 3\n");
} else {
printf("%d", i);
}
}
printf("You just go fizzbuzzed!\n");
return EXIT_SUCCESS;
}
```
Now not even a programming language:
```html
<h1 class="heading" id="this-is-the-first-heading">
This is the first heading
</h1>
```

> This is a blockquote
---

> This is a
> tripple line
> blockquote
[xnacly's homepage](https://xnacly.me)

[this is not a link

this is also not a link]()

[test](this can never be a link

[](a link with an empty title?)

![xnacly's profile picture](https://avatars.githubusercontent.com/u/47723417?v=4)

![](https://avatars.githubusercontent.com/u/47723417?v=4)

![image without a source, this will be an alt text]()

## Heading 2
Expand Down

0 comments on commit 4b7bb4b

Please sign in to comment.