This test file serves as a cheatsheet and markdown preview. It is inspired by the one from the markdown-here repository.
👀 Here is how you can write some markdown and see how it will look on the page:
# H1
## H2
### H3
#### H4
##### H5
###### H6
Emphasis, aka italics, with single asterisks or _underscores_.
Strong emphasis, aka bold, with **asterisks** or double underscores.
Combined emphasis with **asterisks and _underscores_**.
Strikethrough uses two tildes. ~~Scratch this.~~
Emphasis, aka italics, with single asterisks or underscores.
Strong emphasis, aka bold, with asterisks or double underscores.
Combined emphasis with asterisks and underscores.
Strikethrough uses two tildes. Scratch this.
1. First ordered list item
2. Another item
- Unordered sub-list.
3. Third item
1. Ordered sub-list
4. And another item.
You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
To have a line break without a paragraph, you will need to use two trailing spaces.
Note that this line is separate, but within the same paragraph.
- Unordered list can use asterisks
* Or minuses
- Or pluses
First ordered list item
Another item
Third item
And another item.
You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we’ll use three here to also align the raw Markdown).
To have a line break without a paragraph, you will need to use two trailing spaces. Note that this line is separate, but within the same paragraph.
[I'm an inline-style link](https://github.com/AlbanCrepel/compiiile)
[I'm an inline-style link with title](https://github.com/AlbanCrepel/compiiile "Compiiile's Repository")
[I am a cross-reference link](./README.md)
[I am a cross-reference link pointing to an achor](./README.md#support)
URLs and URLs in angle brackets will automatically get turned into links.
https://github.com/AlbanCrepel/compiiile or <https://github.com/AlbanCrepel/compiiile>.
I’m an inline-style link with title
I am a cross-reference link pointing to an achor
URLs and URLs in angle brackets will automatically get turned into links. https://github.com/AlbanCrepel/compiiile or https://github.com/AlbanCrepel/compiiile.
You can specify the title, alt text, and size of any image:
![Favicon alt text|100px](./.compiiile/public/favicon.png "Favicon title")
![Favicon alt text|100px|no-margin](./.compiiile/public/favicon.png "Favicon without margin")
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```python
s = "Python syntax highlighting"
print s
```
```
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
```
var s = "JavaScript syntax highlighting"
alert(s)
s = "Python syntax highlighting"
print s
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
| First column | Second column |
| ------------ | ------------------ |
| Some content | Some other content |
First column | Second column |
---|---|
Some content | Some other content |
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Quote break.
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote.
Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.
Quote break.
This is a very long line that will still be quoted properly when it wraps. Oh boy let’s keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.
:ok_woman: :zap: :sparkles:
🙆 ⚡ ✨
- [ ] a todo item
- [x] I've done this one
<ul>
<li>An html list item</li>
<li>A second list item</li>
</ul>
Three or more Hyphens
---
Three or more Hyphens