It appears that a github fenced code block doesn't accept arbitrary character strings. A block like this:
```haskell
sinusoid1 = plot_lines_values .~ [[ (x,(am x)) | x <- [0,(0.5)..400]]]
$ plot_lines_style . line_color .~ opaque blue
$ plot_lines_title .~ "am"
$ def
```
ends displaying the code truncated a the first < symbol.
A real example of this is here:
https://github.com/timbod7/haskell-chart/wiki/example-1
Do I need to escape certain character strings in github markdown code blocks? How do I do this?