Skip to content

Instantly share code, notes, and snippets.

@pedrobachiega
Last active October 4, 2015 05:48
Show Gist options
  • Save pedrobachiega/2588831 to your computer and use it in GitHub Desktop.
Save pedrobachiega/2588831 to your computer and use it in GitHub Desktop.
Tutorial and syntax to markdown style text
# Title level 1
## Title level 2
> This is a quote or citation with HTML breakline <br/>
> -- RD
* Bullet 1
* Bullet 2
```Ruby
# highlight syntax to Ruby code
def tutorial
do_something
end
```
```single code syntax```
[This is a link to Google.com](http://www.google.com)

Title level 1

Title level 2

This is a quote or citation with HTML breakline
-- RD

  • Bullet 1
  • Bullet 2
# highlight syntax to Ruby code
def tutorial
  do_something
end

single code syntax

This is a link to Google.com

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