Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 842 Bytes

File metadata and controls

53 lines (35 loc) · 842 Bytes

Communicate through Markdown (.md)

Through this course i am learning and utilizing the use of markdown files in order to improve my code!

-- Types of headers --

H1

H2

H3

H4

H5
H6

Let`s dive in!

-- Adding an image: --

Image of Yaktocat

-- Adding a code example --

In Markdown Format (.md):
# Hello, World!
In Javascript Format (.js):
console.log("Hello, World!");
In C Format (.c):
#include <stdio.h>

int main() {
    printf("Hello, World!\n");
    return 0;
}

-- Make a task list --

  • Sleep
  • Code
  • Eat
  • Repeat
"It is not titles that honor men, but men that honor titles." - Niccolò Machiavelli