Skip to content

An all you can eat compilation of programming resources

Notifications You must be signed in to change notification settings

kvourlakidis/dev-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Markdown Cheat Sheet

Markdown is a lightweight markup language with plain text formatting syntax (Wikipedia). Github.com uses its own version of the Markdown syntax that provides an additional set of features (guides.github.com).

This is a level 1 Heading

This is a level 2 Heading

This is a level 3 Heading

This is a level 4 Heading

This is a level 5 Heading
This is a level 6 Heading

To create paragraphs, use a blank line to separate one or more lines of text. Do not indent paragraphs with spaces or tabs.

Bold text is surrounded by double asterisks.

Italic text is surrounded by single asterisks.

Bold and italic text is surrounded by triple asterisks.

To create a blockquote, add a > in front of a paragraph.

This is an example of a block quote.

Each line of this blockquote is prefixed with a >. Other syntax elements can be used inside blockquotes.

Ordered lists are denoted by a number followed by a dot:

  1. First item
  2. Second item
  3. Third item

Unordered lists are denoted by dashes:

  • An item
  • Another item
  • Yet another item

Links are declared inline or as a reference:

Inline link

Link with title

[Reference link][Reference text]

Relative file reference

[Numbers can be used for reference links][1]

Or leave it empty and use the [link text itself].

Reference links: [Reference text]: https://www.mozilla.org [1]: http://slashdot.org [link text itself]: http://www.reddit.com

Images can be declared inline or as a reference:

![alt text](https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png The Github Logo)

![alt text](https://github.githubassets.com/images/modules/logos_page/Octocat.png The Github Octocat Logo)

Code and syntax highlighting

Github's Markdown renderer support syntax highlighting. For a complete list of support languages see TODO.

Inline code has back-ticks around it.

Code blocks are either fenced by three back-ticks or indented with four spaces. Only the fenced (back-tick) variant supports syntax highlighting.

Horizontal line

Three (or more) hyphens

Three (or more) asterisks


Three (or more) underscores


Sources: https://guides.github.com/features/mastering-markdown/ https://www.markdownguide.org/basic-syntax/ https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet https://help.github.com/en/github/writing-on-github https://github.com/logos

About

An all you can eat compilation of programming resources

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published