Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-02-25 | Added test case for variables/metadata in Markdown writer. | John MacFarlane | 1 | -0/+15 | |
2017-02-25 | LaTeX reader: allow hspace and vspace to count as raw block or inline. | John MacFarlane | 1 | -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-23 | Updated table tests. | John MacFarlane | 1 | -36/+36 | |
2017-02-22 | When parsing raw LaTeX commands, include trailing space. | John MacFarlane | 2 | -1/+7 | |
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-21 | MediaWiki reader: ensure that list starts begin at left margin. | John MacFarlane | 1 | -0/+58 | |
Including when they're in tables or other list items. Closes #2606. | |||||
2017-02-21 | MediaWiki writer: Remove newline before `</ref>`. | John MacFarlane | 1 | -7/+3 | |
Closes #2652. | |||||
2017-02-21 | MediaWiki writer: add display attribute on `<math>` tags. | John MacFarlane | 1 | -7/+7 | |
This allows display math to be rendered properly. Closes #3452. | |||||
2017-02-21 | MediaWiki reader: fixed more table issues. | John MacFarlane | 1 | -0/+109 | |
Closes #2649. | |||||
2017-02-17 | Added warnings for non-rendered blocks to some writers. | John MacFarlane | 1 | -1/+2 | |
2017-02-15 | Fix indirect hyperlink targets. Closes #512. | John MacFarlane | 1 | -0/+41 | |
2017-02-15 | ZimWiki writer: removed internal formatting from note and table cells, ↵ | Alex Ivkin | 2 | -31/+27 | |
because ZimWiki does not support it (#3446) | |||||
2017-02-13 | LaTeX reader: properly handle column prefixes/suffixes. | John MacFarlane | 1 | -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-12 | Add Org writer unit tests | Alexander Krotov | 2 | -0/+27 | |
2017-02-11 | RST reader/writer: properly handle table captions. | John MacFarlane | 2 | -40/+37 | |
Currently the support for the `.. table` directive is a bit limited; we don't yet support the `widths` field. But at least you can have a proper captioned table. | |||||
2017-02-11 | Fixed small bug in RST list parsing. | John MacFarlane | 1 | -0/+19 | |
See #3432. Previously the parser didn't handle properly this case: * - a - b * - c - d | |||||
2017-02-11 | Use new warnings throughout the code base. | John MacFarlane | 1 | -1/+1 | |
2017-02-06 | Removed --parse-raw and readerParseRaw. | John MacFarlane | 2 | -1/+28 | |
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-06 | Use unicode-math by default in default.latex template. | John MacFarlane | 4 | -20/+4 | |
mathspec will be used in xelatex if the `mathspec` variable is set; otherwise unicode-math will be used. Thanks to Václav Haisman. | |||||
2017-02-05 | Handle language in inline code with --listings. | John MacFarlane | 1 | -0/+9 | |
Closes #3422. | |||||
2017-02-04 | More smart escaping tests. | John MacFarlane | 1 | -0/+20 | |
2017-02-04 | Consolidated some common functions in Tests.Helper. | John MacFarlane | 3 | -81/+52 | |
2017-02-04 | Added first command test to cabal metadata and repo. | John MacFarlane | 1 | -0/+25 | |
2017-02-04 | Org writer: reduce to two spaces after bullets | Albert Krewinkel | 1 | -84/+84 | |
The org writer was inserting two spaces after list bullets. Emacs Org-mode defaults to a single space, so behavior is changed to reflect this. Closes: #3417 | |||||
2017-02-04 | Added new test framework Tests.Command. | John MacFarlane | 2 | -19/+59 | |
Any files added under test/command will be treated as shell tests (see smart.md for an example). This makes it very easy to add regression tests etc. | |||||
2017-02-04 | Added skeleton for Tests.Command. | John MacFarlane | 2 | -0/+93 | |
2017-02-04 | Moved tests/ -> test/. | John MacFarlane | 326 | -0/+45138 | |