Skip to content

Noldos/test-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

A short primer to markdown syntax ! 💫

Markdown is a lightweight markup language that you can use to add formatting to plaintext text documents. Markdown is one of the most popular markup languages.

Markdown files (files with a .md extension) such as this README file are automatically rendered by GitHub.

Bold and italic text

  • To render text in bold, surround it with ** or __.
    Example: **this is important** ---> this is important

  • To render text in italic, surround it with _ or *.
    Example: this is *really great* ---> this is really great

Titles

To create a title in markdown, add one (or more) # signs at the start of the line:

  • # = level 1 title (largest font).
  • ## = level 2 title.
  • ### = level 3 title.
  • #### = level 4 title.
  • ##### = level 5 title.
  • ###### = level 6 title (smallest font).

Examples:

This is a level 3 title...

This is a level 5 title...

Bulleted lists

Bulleted lists are created by adding a - or * in front of a line. For instance:

- Item 1 (or * Item 1)
- Item 2 (or * Item 2)
- ...

will render as:

  • Item 1
  • Item 2
  • ...

Code blocks

  • To render text as inline code, surround it with single backticks `.
  • To render text as a code block, use triple backticks ```

About

Test repository to learn working with remotes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published