Skip to content

Latest commit

 

History

History
 
 

markdown

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Markdown Example

https://github.github.com/gfm/

https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax

Unordeded lists

We can craete unorded lists in markdown using hypens.

  • foo
  • bar
  • baz
  • baz

ordered lists

  1. foo
  2. bar
  1. baz
  2. baz
  3. baz

Text formatting

italics italics bold bold striketrhough

Code

Inline code

You can print to the terminal using the puts "hello world" command.

Multi line code

Without highlighting

def hello_world
  puts "Hello World"
end

With Highlighting

def hello_world
  puts "Hello World"
end

Tables

foo bar
baz bim
abc defghi
bar baz
abc def
bar
bar baz
abc def

Blockquote

"The cloud is amazing"

Foo

bar baz

Links

Github Website

Secret Page

Tasklist

  • Item 1
  • Item 2