Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 497 Bytes

sample_preview.md

File metadata and controls

22 lines (17 loc) · 497 Bytes

Sample Preview Render

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