Skip to content

Latest commit

 

History

History
252 lines (171 loc) · 5.38 KB

markdown-preview.md

File metadata and controls

252 lines (171 loc) · 5.38 KB
title description first-front-matter-value second-front-matter-value
Markdown preview
Here is how you can write some markdown and see how it will look on the page
1
2

Markdown preview

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:

Titles

# H1
## H2
### H3
#### H4
##### H5
###### H6

H1

H2

H3

H4

H5
H6

Emphasis

Emphasis, aka italics, with *asterisks* or _underscores_.

Strong emphasis, aka bold, with **asterisks** or __underscores__.

Combined emphasis with **asterisks and _underscores_**.

Strikethrough uses two tildes. ~~Scratch this.~~

Emphasis, aka italics, with asterisks or underscores.

Strong emphasis, aka bold, with asterisks or underscores.

Combined emphasis with asterisks and underscores.

Strikethrough uses two tildes. Scratch this.

Lists

1. First ordered list item
2. Another item
   * Unordered sub-list.
1. Actual numbers don't matter, just that it's a number
   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
  1. First ordered list item

  2. Another item

    • Unordered sub-list.
  3. Actual numbers don't matter, just that it's a number

    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

Links

[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

I'm an inline-style link with title

I am a cross-reference link

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.

⚠️ If your cross-reference link contains spaces in the url, replace all spaces by %20

Images

You can specify the title, alt text, and size of any image:

![Favicon alt text](./bin/client/public/favicon.png "Favicon title" =100x200)

![Favicon alt text](./bin/client/public/favicon.png "Favicon title" =100x200)

Code and syntax highlight

    ```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>.

Tables

| First column | Second column     |
|--------------|--------------------|
| Some content | Some other content|
First column Second column
Some content Some other content

Blockquotes

> 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.

Emojis

:ok_woman: :zap: :sparkles:

🙆‍♀️ ⚡ ✨

Checkboxes

- [ ] a todo item
- [x] I've done this one
  • a todo item
  • I've done this one

Inline HTML

<ul>
  <li>An html list item</li>
  <li>A second list item</li>
</ul>
  • An html list item
  • A second list item

Separators

Three or more...

---

Hyphens

***

Asterisks

___

Underscores

Three or more...


Hyphens


Asterisks


Underscores