Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-11-18 | LaTeX reader: improve parsing of `\tiny`, `scriptsize`, etc. | John MacFarlane | 1 | -4/+18 | |
Parse as raw, but know that these font changing commands take no arguments. | |||||
2018-11-19 | FB2 reader: do not throw error for unknown elements in <body> | Alexander Krotov | 1 | -1/+1 | |
Some libraries include custom elements in their FB2 files. | |||||
2018-11-16 | HTML reader: allow tfoot before body rows. | John MacFarlane | 1 | -2/+3 | |
Closes #5079. | |||||
2018-11-15 | HTML reader: parse `<small>` as a Span with class "small". | John MacFarlane | 1 | -0/+4 | |
Closes #5080. | |||||
2018-11-14 | Muse reader: trim whitespace before parsing grid table cells | Alexander Krotov | 1 | -2/+2 | |
2018-11-14 | Muse reader: add grid tables support | Alexander Krotov | 1 | -2/+31 | |
2018-11-13 | HTML reader: allow thead containing a row with td rather than th. | John MacFarlane | 1 | -11/+11 | |
See #5014. Note that this doesn't address the original issue in #5014, only an unrelated side-issue. | |||||
2018-11-11 | Text.Pandoc.Shared: add parameter to uniqueIdent, inlineListToIdentifier. | John MacFarlane | 3 | -32/+22 | |
The parameter is Extensions. This allows these functions to be sensitive to the settings of `Ext_gfm_auto_identifiers` and `Ext_ascii_identifiers`. This allows us to use `uniqueIdent` in the CommonMark reader, replacing some custom code. It also means that `gfm_auto_identifiers` can now be used in all formats. Semantically, `gfm_auto_identifiers` is now a modifier of `auto_identifiers`; for identifiers to be set, `auto_identifiers` must be turned on, and then the type of identifier produced depends on `gfm_auto_identifiers` and `ascii_identifiers` are set. Closes #5057. | |||||
2018-11-11 | Clean up toIdent in CommonMark reader. | John MacFarlane | 1 | -8/+9 | |
This partially addresses #5057, fixing a bad interaction between the `ascii_identifiers` extension and the `gfm_auto_identifiers` extension, and creating identifiers that match the ones GitHub produces. This code still needs to be put somewhere common, so the `gfm_auto_identifiers` extension will work with other formats. | |||||
2018-11-03 | Vimwiki reader: parse Text without converting to [Char] | Alexander Krotov | 1 | -4/+3 | |
2018-11-03 | Creole reader: parse Text without converting to [Char] | Alexander Krotov | 1 | -4/+3 | |
2018-11-02 | Man reader: table improvements. | John MacFarlane | 1 | -6/+7 | |
2018-11-02 | Man reader: allow .SS to have blank contents. | John MacFarlane | 1 | -1/+1 | |
2018-11-02 | Roff reader: Don't require global table options. | John MacFarlane | 1 | -2/+2 | |
2018-11-02 | Roff reader: tbl improvements. | John MacFarlane | 1 | -1/+2 | |
2018-11-02 | Roff reader: Handle 'H' modifier after '.TS'. | John MacFarlane | 1 | -3/+2 | |
2018-11-02 | Roff reader: conditionals: allow .\} to end group. | John MacFarlane | 1 | -3/+4 | |
2018-11-02 | Roff reader: reinstate column check for macros. | John MacFarlane | 1 | -10/+16 | |
If .TS occurs in a table cell, this shouldn't start a table. We make an exception for the line after .if or .ie. | |||||
2018-11-02 | Roff reader: another fix for conditionals. | John MacFarlane | 1 | -1/+1 | |
2018-11-02 | Roff reader: fixed small issue with conditionals. | John MacFarlane | 1 | -3/+1 | |
2018-11-02 | Roff reader: Improved handling of custom strings as arguments. | John MacFarlane | 1 | -6/+6 | |
Added test. | |||||
2018-11-02 | Roff reader: expand strings in font commands. | John MacFarlane | 1 | -12/+26 | |
Closes #5039. | |||||
2018-11-02 | Revert "Revert "Revert "Roff reader: custom Stream type.""" | John MacFarlane | 1 | -51/+27 | |
This reverts commit 9a0333e48917308f15d5ccda246dd31525501f79. | |||||
2018-11-02 | Fix readWithM with Stream. | John MacFarlane | 1 | -1/+1 | |
2018-11-02 | Revert "Revert "Roff reader: custom Stream type."" | John MacFarlane | 1 | -27/+51 | |
This reverts commit a64063af62351cc31006a855a59df884e0892834. | |||||
2018-11-02 | Revert "Roff reader: custom Stream type." | John MacFarlane | 1 | -51/+27 | |
This reverts commit 211f7ffc78ea1df49a685ac1160fa3942b3a3569. We were getting stack overflows. Not sure why. | |||||
2018-11-02 | Roff reader: custom Stream type. | John MacFarlane | 1 | -27/+51 | |
So far, this is just a shell. But it will allow us to expand macro strings while getting tokens, when we add a custom uncons instance. | |||||
2018-11-02 | Roff reader: improve lexing of conditionals. | John MacFarlane | 1 | -28/+49 | |
Partially addreses #5039. | |||||
2018-11-01 | Change 'groff' -> 'roff'. | John MacFarlane | 1 | -2/+2 | |
These formats (man, ms) are not groff-specific. | |||||
2018-10-30 | Roff reader: rename RoffToken constructors so they're shorter. | John MacFarlane | 2 | -50/+50 | |
2018-10-30 | Roff reader: renamed constructors for RoffToken... | John MacFarlane | 2 | -50/+50 | |
to more closely match nomenclature from man 7 groff. | |||||
2018-10-30 | Roff reader: removed MacroKind alias. | John MacFarlane | 2 | -6/+3 | |
2018-10-30 | Roff reader: properly handle unknown backslash escapes. | John MacFarlane | 1 | -1/+4 | |
They are treated as regular characters, according to groff 7. Cloess #5034. | |||||
2018-10-29 | LaTeX reader: allow space at end of math after `\`. | John MacFarlane | 1 | -2/+2 | |
Closes #5010. Expose trimMath from T.P.Shared. | |||||
2018-10-29 | Roff reader: improved escape parsing. | John MacFarlane | 2 | -61/+68 | |
Closes #5032. This also removes the FontSize constructor from LinePart. We don't need this yet. | |||||
2018-10-28 | Roff tokenizer: allow `\*~` etc. | John MacFarlane | 1 | -1/+1 | |
2018-10-28 | Roff tokenizer: handle e.g. `\*n`. | John MacFarlane | 1 | -1/+1 | |
2018-10-28 | Roff tokenizer: better handling of escapes. | John MacFarlane | 1 | -10/+39 | |
2018-10-28 | Roff reader: introduce normal/copy mode distinction. | John MacFarlane | 1 | -4/+33 | |
2018-10-28 | Roff reader: use escapeArg in macroArg. | John MacFarlane | 1 | -3/+8 | |
2018-10-28 | Roff tokenizer: refactor escString. | John MacFarlane | 1 | -15/+6 | |
2018-10-28 | Roff tokenizer: revamped font parsing using escapeArg. | John MacFarlane | 1 | -62/+59 | |
Add support for \C'...' escapes. | |||||
2018-10-28 | Roff tokenizer: abstract out patterns: escapeArg, quoteArg. | John MacFarlane | 1 | -27/+27 | |
2018-10-28 | Roff tokenizer: allow space before ( in table options. | John MacFarlane | 1 | -1/+2 | |
2018-10-28 | Man reader: improved code blocks as continuation in list items. | John MacFarlane | 1 | -5/+7 | |
2018-10-28 | Man reader: allow both .in and .IP to indent code block. | John MacFarlane | 1 | -1/+2 | |
2018-10-28 | Man reader: skip .in used for indentation of code. | John MacFarlane | 1 | -1/+2 | |
2018-10-28 | Man reader: .PP in code blocks as blank line. | John MacFarlane | 1 | -0/+1 | |
2018-10-28 | Man reader: handle inline macros like .BI in code blocks. | John MacFarlane | 1 | -38/+58 | |
The font changes are discarded, but at least we keep the text. | |||||
2018-10-28 | Hlint changes. | John MacFarlane | 2 | -10/+9 | |