Skip to content

Latest commit

 

History

History
204 lines (130 loc) · 3.2 KB

mark_down_cheatSheet.md

File metadata and controls

204 lines (130 loc) · 3.2 KB

1- Headings

How to give headings in markdown files?

Heading 1

Heading 2

Heading 3

Heading ?

so on.

2- Block of Words

This is a normal text in Markdown.

This is a block of special text

This is a second line

3- Line breaks

This is a 40 days long course Data Science with Python AKA Python_ka_chilla_with_baba_aammar.
This is a second line.

4- Combine two things

Block of words and heading

Heading 2

5- Face of text

Bold

Italic

Bold and Italic

Or you can use these symbols _ (Underscore)

BOLD

Italic

write in comments about BOld and Italic with underscore

6- Bullet points/ Lists

  • Day-1
  • Day-2
  • Day-3
  • Day-4
  • Day-5
    • Day-5a
      • Sub list (Anything)
    • Day-5b
  • Day-6
  • Day-7

using *or+

  • One
  • One

Numbering of lists

  1. Day1
  2. Day2
  3. Day3
  4. Day4
  5. Day5
    1. Day5a
    2. Day5b
  6. Day6
  7. Day7
  8. Day8

7- Line breaks or page breaks

This is page 1.




This is page 2.

8- Links and Hyperlinks

https://www.youtube.com/c/codanics/playlists

The playlist of python ka chilla is here

This whole course is here.

9- Images and Figures with link

To join this course please scan the following QR code and join telegram group:

QR

Task: how to comment out a markdown line? and its shortcut?

Online picture:

Codanics

10- Adding code or code block

To print a string use print("Codanics")

print("Hello Baba G")

x = 5+6
y = 3-2
z= x+y
print(z) 

This code with show color according to python language syntax

x = 5+6
y = 3-2
z= x+y
print(z) 

This code with show color according to R language syntax

x = 5+6
y = 3-2
z= x+y
print(z) 

11- adding tables

species petal_length sepal_length
virginica 18.2 19.2
setosa 15.1 17.2
versicolor 12.2 12.2
virginica 18.2 19.2
setosa 15.1 17.2
versicolor 12.2 12.2

12- content

1- Headings
2- Block of words/Citation
3- Line breaks
4- Combine two things
5- Text Face
6- Bullet
7- line/page breaks
8- Links
9- Figure links
10- Code/code blocks
11- Tables

13- Install extensions

Sample Text

Bold

Italic

Italic and Bold

Link

Image

Column A Column B Column C
A1 B1 C1
A2 B2 C2
A3 B3 C3
Column A Column B Column C
A1 B1 C1
A2 B2 C2
A3 B3 C3