Skip to content

Instantly share code, notes, and snippets.

@mfcovington
Created October 30, 2012 23:28
Show Gist options
  • Save mfcovington/3983783 to your computer and use it in GitHub Desktop.
Save mfcovington/3983783 to your computer and use it in GitHub Desktop.
Testing Markdown on github

##Definitions lists don't work:

Term : Definition

Apple : Pomaceous fruit of plants of the genus Malus. : An american computer company.

Term 1 Term 2 : Definition

click for functional example (also, they work for me in nvALT & Marked)

##Syntax coloring does work:

R:

x <- 5
y <- 2
z <- x * y
print(z)

Perl:

my $name = "Mike";
print "Hi $name!\n";

Shell:

for file in *.txt
do
    mv $file prefix.$file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment