Giter VIP home page Giter VIP logo

markdown-cheatsheet's Introduction

Markdwn Cheatsheet

markdown_speak

Table of Contents


This is my little markdown cheatsheet to look if I ever forget a syntax string.

Headers

To create headers just use #:

# h1
## h2
### h3
#### h4
##### h5
###### h6

Header 1

Header 2

Header 3


If you want a header with a unterline use = or -:

Header
======

Header
------

Header

Header


Bold, Italic and Strikethrough

Bold Text can be written with **:

**Bold Text**

Italic text can be written with *:

*Italic Text*

Strikethrough Text can be written with ~~:

~~Strikethrough Text~~

Lists

Ordered Lists

Ordered Lists start with numbers:

1. List 1
2. List 2
3. List 3
 * List 3.x
4. List 4
  1. List 1
  2. List 2
  3. List 3
  • List 3.x
  1. List 4

Unordered Lists

Unordered lists start with *, - or +:

* unoredered 1
- unoredered 2
+ unoredered 3
  • unoredered 1
  • unoredered 2
  • unoredered 3

Links

You can use an inline link:

[Link-Text](http://link-url/)

Or you can use URLs directly:

https://google.de/

Link-Text

https://google.de/


Images

Inline images:

![alt_text](path/to/picture or /link/to/picture/)

Reference Images:

![alt_text][bla]

[bla](path/to/picture or /link/to/picture/)

markdown_speak


Image Size

You can also insert images with defined sizes:

![](./wwe_markdown.png =100x20)

Or just without height:

![](./wwe_markdown.png =250x)

Codeblocks and Inline Code

Codeblocks ban be used with 4 spaces or 3 backticks:

    4 spaces for code
```
backticks for code
```

Inline code is written with backticks:

```inlinde code```
Codeblock

Or Inline Code.


Tables

Tables are written with pipes and dashes:

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| Just | insert | dahses |
| And | also | new lines |
Column 1 Column 2 Column 3
Just insert dahses
And also new lines

Blockquotes

Blockquotes can be inserted with >:

> Blockquote


> Multiline
> Blockquote

Blockquote

Multiline
Blockquote


Inline HTML

You can use almost every HTML tag in markdown without a problem. Just play with it.


Horizonatl Rule

Can be inserted on multiple ways. With 3 underscores, 3 stars or 3 hyphens:

---
***
___

Table of Contents

You can also use a table of contents:

# Table of Contents
1. [Example](#example)
2. [Example2](#example2)
3. [Third Example](#third-example)

## Example
## Example2
## Third Example

E-Mail Addresses

E-Mail addresses can be simply added:

[email protected]


Anchors

Anchors can be set like this:

* [foobar](?#id1)

###<a id="id1"></a>
## FooBar Heading

It works also for table of contents then or even for other pages depending on your used system.

markdown-cheatsheet's People

Contributors

1and1-server-support avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.