Updated Pygments issues (markdown)

This commit is contained in:
Dominik Picheta 2014-04-14 04:42:43 -07:00
parent 23ceb263c2
commit 4301d28585
1 changed files with 11 additions and 1 deletions

View File

@ -10,4 +10,14 @@ var x = 0f64 # This is red.
## Troubles with triple quotes
Files like [examples/cross_todo/nimrod_backend/backend.nim](https://github.com/Araq/Nimrod/blob/master/examples/cross_todo/nimrod_backend/backend.nim) seem to have troubles with triple quotes, maybe because they use ``sql``?
Files like [examples/cross_todo/nimrod_backend/backend.nim](https://github.com/Araq/Nimrod/blob/master/examples/cross_todo/nimrod_backend/backend.nim) seem to have troubles with triple quotes, maybe because they use ``sql``?
## Generics + Operators
```nimrod
proc `[]`[T](x: int, args: varargs[T, `$`]) =
for arg in args:
echo arg
1[1, "x", 3]
```