Uses github css to preview not only structure and content, but also look and feel (awkward bolding and italics for demonstration purposes)
Emoji support: 🚀
Relative links: readme.md
Syntax highlighting example courtesy of http://stackoverflow.com/a/705754
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello #{@name}!"
end
end
hello = HelloWorld.new("World")
hello.sayHi