Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-03-08 | Org reader: disallow tables on list marker lines | Albert Krewinkel | 1 | -1/+10 | |
Fixes: #3499 | |||||
2017-03-08 | Markdown writer: Avoid spurious blanklines at end of document... | John MacFarlane | 3 | -8/+0 | |
after tables and list, for example. | |||||
2017-03-08 | Markdown writer: ensure space before list at top level. | John MacFarlane | 1 | -0/+13 | |
Closes #3487. | |||||
2017-03-08 | Org reader: don't allow tables inside list items. | John MacFarlane | 1 | -0/+9 | |
Closes #3499. | |||||
2017-03-08 | Added test case for #3497. | John MacFarlane | 1 | -0/+51 | |
2017-03-07 | Markdown reader: Treat certain environments as inline | John MacFarlane | 1 | -0/+52 | |
when they occur without space surrounding them. E.g. equation, math. This avoids incorrect vertical space around equations. Closes #3309. Closes #2171. See also rstudio/bookdown#358. | |||||
2017-03-06 | Markdown writer: better handling of tables with empty columns. | John MacFarlane | 1 | -0/+16 | |
E.g. an HTML table with two cells in the first row and one in the second (but no row/colspan). We now calculate the number of columns based on the longest row (or the length of aligns or widths). Closes #3337. | |||||
2017-03-06 | LaTeX reader: allow newpage, clearpage, pagebreak in inline contexts | John MacFarlane | 1 | -0/+40 | |
as well as block contexts. Closes #3494. | |||||
2017-03-05 | Markdown reader: fixed internal header links. | John MacFarlane | 1 | -0/+9 | |
Closes #2397. This patch also adds `shortcut_reference_links` to the list of mmd extensions. | |||||
2017-03-05 | Added a markdown abbrevation test case. | John MacFarlane | 1 | -0/+31 | |
2017-03-05 | Markdown reader: Fixed regression on left-biased union for metadata. | John MacFarlane | 1 | -0/+15 | |
When multiple YAML metadata blocks are used, and two define the same field, the value defined first takes precedence, according to the manual. This was changed briefly in ba3ee62323644134f2a5dd3277e3349d3681111a. This commit reverts to the original behavior and adds a test case. | |||||
2017-03-05 | Parse YAML metadata in a context that sees footnotes... | John MacFarlane | 1 | -0/+19 | |
defined in the body of the document. Closes #1279. | |||||
2017-03-04 | Fixed some loose ends in #1592. | John MacFarlane | 1 | -0/+49 | |
Added test cases. Fixed HTML reader to parse a span with class "smallcaps" as SmallCaps. Fixed Markdown writer to render SmallCaps as a native span when native spans are enabled. | |||||
2017-03-03 | OpenDocument writer: fixed dropped elements in some ordered lists. | John MacFarlane | 1 | -0/+59 | |
Closes #2434. | |||||
2017-03-03 | RST reader: support RST-style citations. | John MacFarlane | 1 | -0/+18 | |
The citations appear at the end of the document as a definition list in a special div with id `citations`. Citations link to the definitions. Added stateCitations to ParserState. Closes #853. | |||||
2017-03-02 | RST reader: Handle multiline cells in simple tables. | John MacFarlane | 1 | -0/+48 | |
Closes #1166. | |||||
2017-03-01 | Markdown writer: Fixed grid tables embedded in grid tables. | John MacFarlane | 1 | -0/+32 | |
Closes #2834. | |||||
2017-02-28 | RST reader: implemented implicit internal header links. | John MacFarlane | 1 | -0/+45 | |
Cloess #3475. | |||||
2017-02-26 | RST reader: support scale and align attributes of images. | John MacFarlane | 1 | -0/+11 | |
Closes #2662. | |||||
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-22 | When parsing raw LaTeX commands, include trailing space. | John MacFarlane | 1 | -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-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 reader: fixed more table issues. | John MacFarlane | 1 | -0/+109 | |
Closes #2649. | |||||
2017-02-15 | Fix indirect hyperlink targets. Closes #512. | John MacFarlane | 1 | -0/+41 | |
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-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-06 | Removed --parse-raw and readerParseRaw. | John MacFarlane | 1 | -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-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 | Added first command test to cabal metadata and repo. | John MacFarlane | 1 | -0/+25 | |