diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-15 02:48:21 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-15 02:48:21 +0000 |
commit | 78aeebc143b673db6a0a08be9fa4f5314c681ce8 (patch) | |
tree | 06f1dcbcb6ec5dae0017c92ef6ee1ad47b337500 /src | |
parent | 8ce4b2fb62ffa6d9893f9fa54d5fd0016bcdfc5b (diff) | |
download | pandoc-78aeebc143b673db6a0a08be9fa4f5314c681ce8.tar.gz |
Removed an unused function in LaTeX writer.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@714 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Writers/LaTeX.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Writers/LaTeX.hs b/src/Text/Pandoc/Writers/LaTeX.hs index c16a80fac..e0c80d24e 100644 --- a/src/Text/Pandoc/Writers/LaTeX.hs +++ b/src/Text/Pandoc/Writers/LaTeX.hs @@ -161,8 +161,6 @@ blockToLaTeX (Table caption aligns widths heads rows) = printDecimal :: Float -> String printDecimal = printf "%.2f" -tableColumnWidths cols = map (length . (concatMap blockToLaTeX)) cols - tableRowToLaTeX cols = joinWithSep " & " (map (concatMap blockToLaTeX) cols) ++ "\\\\\n" listItemToLaTeX list = "\\item " ++ |