diff options
author | John MacFarlane <jgm@berkeley.edu> | 2010-12-07 12:31:51 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-12-07 12:31:51 -0800 |
commit | 6ef8a363dc8d85bd05e0e93c3f6daddbec5fd63f (patch) | |
tree | 876b4f813d6fcfcc142bc384eaad9c5d21c87221 /README | |
parent | 3b3387b4a325607cb8dd5ef5b6ddec5f7ae08bd7 (diff) | |
download | pandoc-6ef8a363dc8d85bd05e0e93c3f6daddbec5fd63f.tar.gz |
Narrowed a long line in README.
Diffstat (limited to 'README')
-rw-r--r-- | README | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -959,11 +959,11 @@ row of tildes at the start and end: Optionally, you may specify the language of the code block using this syntax: - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ {.haskell .numberLines} + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ {.haskell .numberLines} qsort [] = [] qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++ qsort (filter (>= x) xs) - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Some output formats can use this information to do syntax highlighting. Currently, the only output format that uses this information is HTML. |