pandoc/src/Text/Pandoc/Writers
Jose Luis Duran 1fc665c07d LaTeX writer: Make Horizontal Rules more flexible
Currently, pandoc has hard-coded the following in order to make horizontal
rules in LaTeX:

```hs
"\\begin{center}\\rule{3in}{0.4pt}\\end{center}"
```

Which is fine, but does not allow customizations.  It also does not take into
consideration the current line width.

I'm proposing this change:

```diff
@@ In Writers/LaTeX.hs:
-"\\begin{center}\\rule{3in}{0.4pt}\\end{center}"
+"\\begin{center}\\rule{0.5\\linewidth}{\\linethickness}\\end{center}"
```
2014-08-28 03:12:37 +00:00
..
AsciiDoc.hs Use stripPrefix where appropriate. 2014-08-04 19:57:42 +04:00
ConTeXt.hs ConTeXt writer: improved autolink detection. 2014-08-12 15:49:20 -07:00
Custom.hs Remove unused import. 2014-07-16 23:56:24 -07:00
Docbook.hs Merge pull request #1486 from Aelve/minor 2014-08-04 22:07:02 -07:00
Docx.hs Docx writer: Accomodate GHC 7.4 (no lookupEnv) 2014-08-26 06:43:14 -04:00
DokuWiki.hs Use raw HTML for complex block quotes. 2014-07-13 16:15:45 -07:00
EPUB.hs EPUB writer: don't use page-progression-direction in EPUB2. 2014-08-19 09:21:26 -07:00
FB2.hs Add PatternGuards pragmas. 2014-08-04 19:58:25 +04:00
Haddock.hs Renamed readTeXMath' to avoid name conflict with texmath 0.6.7 2014-07-19 18:10:59 +01:00
HTML.hs HTML writer: use 'uri' or 'email' class for autolinks. 2014-08-12 15:49:43 -07:00
ICML.hs Removed space at ends of lines in source. 2014-07-12 22:57:22 -07:00
LaTeX.hs LaTeX writer: Make Horizontal Rules more flexible 2014-08-28 03:12:37 +00:00
Man.hs Use stripPrefix where appropriate. 2014-08-04 19:57:42 +04:00
Markdown.hs Markdown writer: don't escape $, ^, ~ when extensions are deactivated. 2014-08-16 17:14:51 -07:00
MediaWiki.hs Mediawiki writer: don't escape inside <source>. 2014-07-29 21:32:07 -07:00
Native.hs Update copyright notices for 2014, add missing notices 2014-05-09 00:46:08 +02:00
ODT.hs Use texmath 0.7 interface. 2014-08-04 11:13:09 -07:00
OpenDocument.hs Renamed readTeXMath' to avoid name conflict with texmath 0.6.7 2014-07-19 18:10:59 +01:00
OPML.hs Update copyright notices for 2014, add missing notices 2014-05-09 00:46:08 +02:00
Org.hs Org Writer: Write anchor elements 2014-08-08 00:20:18 +01:00
RST.hs Use stripPrefix where appropriate. 2014-08-04 19:57:42 +04:00
RTF.hs RTF writer: Improved image embedding. 2014-07-30 14:49:57 -07:00
Shared.hs Update copyright notices for 2014, add missing notices 2014-05-09 00:46:08 +02:00
Texinfo.hs Update copyright notices for 2014, add missing notices 2014-05-09 00:46:08 +02:00
Textile.hs Make raw_tex extension non-default for textile reader, writer. 2014-08-14 09:49:31 -07:00