Skip to content

Instantly share code, notes, and snippets.

@maqadeersaeed
Last active December 28, 2021 18:37
Show Gist options
  • Save maqadeersaeed/395926445b687cc1be9f180b036a55ce to your computer and use it in GitHub Desktop.
Save maqadeersaeed/395926445b687cc1be9f180b036a55ce to your computer and use it in GitHub Desktop.
This is reference for How to Format Markdown Files (*.md) Like ReadMe.md Files in Projects.

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Paragraph text Inline Code text Mistaken text. Italics Bold


Check List

  • a task list item
  • list syntax required
  • normal formatting
  • incomplete
  • completed

Code Blocks

4 space indention
makes full-width
standard code blocks
var now = new Date();

var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}
today =  days[now.getDay()] + ", " +
         months[now.getMonth()] + " " +
         date + ", " +
         (fourdigits(now.getYear())) ;

document.write(today);
#sc_drag_area {
  height:100px;
  left:150px;
  position: absolute;
  top:100px;
  width:250px;
  z-index: 9999;
}

Lists

  • Item 1
  • Item 2
    • Item 3
  1. Item 1 1.1. Item 1 Sub
  2. Item 2
  3. Item 3

Quote

Second line Quote


URL Custom Text


Image


Table

Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1

More Details https://commonmark.org/help/tutorial/index.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment