Skip to content

Latest commit

 

History

History
40 lines (35 loc) · 642 Bytes

markdown-showcase.md

File metadata and controls

40 lines (35 loc) · 642 Bytes

Markdown Formatting Showcase

Text Formatting

Normal text
Italicized text
Bold text

Links and Images

Link to Home Site

Image

Blockquotes and lists

Blockquote
with multiple
lines of
text

  • Unodered
  • list
  • of
  • words
  1. Ordered
  2. list
  3. of
  4. words

Final

Inline code block

fenced
code
block
// fenced code block with syntax highlighting
for(int i = 0; i< 6; i++){
    System.out.println("Hello");
}