Skip to content

Instantly share code, notes, and snippets.

@etorreborre
Created April 7, 2011 04:07
Show Gist options
  • Save etorreborre/907019 to your computer and use it in GitHub Desktop.
Save etorreborre/907019 to your computer and use it in GitHub Desktop.
A bug with pegdown
Here is some text:
================================
As the name indicates `AroundOutside` is just a combination of both `Around` and `Outside` traits to allow you to:
* execute some code "around" the example
* create a context object and pass it to the example
Like this:
object http extends AroundOutside[HttpReq] {
def around[T <% Result](t: =>T) = {
createNewDatabase
================================
The markdown formatting fails if:
* I remove the "Like this" line
* I leave the "def around[T <% Result](t: =>T) = {" line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment