aboutsummaryrefslogtreecommitdiff
path: root/test/command
AgeCommit message (Collapse)AuthorFilesLines
2017-02-26RST reader: support scale and align attributes of images.John MacFarlane1-0/+11
Closes #2662.
2017-02-25Added test case for variables/metadata in Markdown writer.John MacFarlane1-0/+15
2017-02-25LaTeX reader: allow hspace and vspace to count as raw block or inline.John MacFarlane1-0/+56
Previously we would refuse to parse anything as raw inline if it was in the blockCommands list. Now we allow exceptions if they're listed under ignoreInlines in inlineCommands. This should make it easier e.g. to include an \hspace between two side-by-side raw LaTeX tables.
2017-02-22When parsing raw LaTeX commands, include trailing space.John MacFarlane1-0/+6
Otherwise things like `\noindent foo` break and turn into `\noindentfoo`. Affects `-f latex+raw_tex` and `-f markdown` (and other formats that allow `raw_tex`). Closes #1773.
2017-02-21MediaWiki reader: ensure that list starts begin at left margin.John MacFarlane1-0/+58
Including when they're in tables or other list items. Closes #2606.
2017-02-21MediaWiki reader: fixed more table issues.John MacFarlane1-0/+109
Closes #2649.
2017-02-15Fix indirect hyperlink targets. Closes #512.John MacFarlane1-0/+41
2017-02-13LaTeX reader: properly handle column prefixes/suffixes.John MacFarlane1-0/+24
For example, in \begin{tabular}{>{$}l<{$}>{$}l<{$} >{$}l<{$}} each cell will be interpreted as if it has a `$` before its content and a `$` after (math mode).
2017-02-11Fixed small bug in RST list parsing.John MacFarlane1-0/+19
See #3432. Previously the parser didn't handle properly this case: * - a - b * - c - d
2017-02-06Removed --parse-raw and readerParseRaw.John MacFarlane1-0/+27
These were confusing. Now we rely on the +raw_tex or +raw_html extension with latex or html input. Thus, instead of --parse-raw -f latex we use -f latex+raw_tex and instead of --parse-raw -f html we use -f html+raw_html
2017-02-05Handle language in inline code with --listings.John MacFarlane1-0/+9
Closes #3422.
2017-02-04More smart escaping tests.John MacFarlane1-0/+20
2017-02-04Added first command test to cabal metadata and repo.John MacFarlane1-0/+25