Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 685 Bytes

GFM-TEST.md

File metadata and controls

47 lines (35 loc) · 685 Bytes

Testing GFM

This is here temporarily to test github-flavored-markdown on rubydoc.info.

Example 1 (this one should work)

```ruby
thing = Thing.new
thing.should do_something
```
thing = Thing.new
thing.should do_something

Example 2 (indented 2 spaces - just to see what happens)

  ```ruby
  thing = Thing.new
  thing.should do_something
  ```
thing = Thing.new
thing.should do_something

Example 4 (indented 4 spaces - just to see what happens)

    ```ruby
    thing = Thing.new
    thing.should do_something
    ```
```ruby
thing = Thing.new
thing.should do_something
```