summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
Commit message (Collapse)AuthorAge
* HTML reader: Modified htmlTag for fewer false positives.John MacFarlane2012-09-15
| | | | | | A tag must start with `<` followed by `!`,`?`, `/`, or a letter. This makes it more useful in the wikimedia and markdown parsers.
* MediaWiki reader: Handle ref tags as footnotes.John MacFarlane2012-09-15
|
* MediaWiki reader: Better parsing of templates.John MacFarlane2012-09-15
|
* MediaWiki reader: Treat "references" tag as block.John MacFarlane2012-09-15
|
* MediaWiki reader: Interpret width attribute on table columns.John MacFarlane2012-09-15
|
* MediaWiki reader: Got alignments working.John MacFarlane2012-09-15
| | | | | They only work on headers, because pandoc forces same alignment for all cells in a column.
* MediaWiki reader: Misc fixes, put category links at end.John MacFarlane2012-09-15
|
* MediaWiki reader: Skip inline templates, handle <source>.John MacFarlane2012-09-15
|
* MediaWiki reader: Parse styles on table cells.John MacFarlane2012-09-15
|
* MediaWiki reader: Parse styles after '{|' table start.John MacFarlane2012-09-15
|
* MediaWiki reader: || between table cells.John MacFarlane2012-09-14
|
* MediaWiki reader: Improved table parsing.John MacFarlane2012-09-14
|
* MediaWiki reader: Table improvements, added simple table tests.John MacFarlane2012-09-14
|
* MediaWiki reader: Support for basic mediawiki tables.John MacFarlane2012-09-14
|
* MediaWiki reader: Images.John MacFarlane2012-09-13
|
* MediaWiki reader: internal links.John MacFarlane2012-09-13
|
* MediaWiki reader: Implemented basic internal links.John MacFarlane2012-09-13
| | | | Including word-ending links and the "pipe trick."
* MediaWiki reader: Implemented numbered external links.John MacFarlane2012-09-13
|
* MediaWiki reader: Use MWState instead of ParserState.John MacFarlane2012-09-13
|
* MediaWiki reader: Ignore `<gallery>` tags.John MacFarlane2012-09-13
|
* MediaWiki reader: Support HTML lists.John MacFarlane2012-09-13
|
* MediaWiki reader: Handle templates, variables as raw mediawiki.John MacFarlane2012-09-13
| | | | Also check for column 1 in preformatted text.
* MediaWiki reader: Parse templates etc. as raw mediawiki.John MacFarlane2012-09-13
| | | | They can be postprocessed with a pandoc script.
* MediaWiki reader: Improved efficiency with raw html tags.John MacFarlane2012-09-13
| | | | Parse one tag, then use a case statement.
* EPUB writer: Use ch001, ch002, etc. for chapter filenames.John MacFarlane2012-09-13
| | | | | This improves sorting of chapters in some readers, which apparently sort ch2 after ch10. Closes #610.
* MediaWiki reader: Added comment.John MacFarlane2012-09-12
|
* MediaWiki reader: preformatted blocks and tests.John MacFarlane2012-09-12
|
* MediaWiki reader: Support `<math>` tag.John MacFarlane2012-09-12
|
* Added tests for mediawiki lists.John MacFarlane2012-09-12
|
* More mediawiki reader tests.John MacFarlane2012-09-12
|
* Added some tests for mediawiki reader.John MacFarlane2012-09-12
|
* MediaWiki reader: Updated todo comments.John MacFarlane2012-09-12
|
* MediaWiki reader: Support `<syntaxhighlight>` tag.John MacFarlane2012-09-12
|
* HTML writer: Don't print `<dt>` unless term is non-empty.John MacFarlane2012-09-12
|
* MediaWiki reader: Properly handle :, ::, :::...John MacFarlane2012-09-12
|
* MediaWiki reader: Handle def lists without terms (: lines).John MacFarlane2012-09-12
|
* MediaWiki reader: Improvements to list parsing and HTML tag handling.John MacFarlane2012-09-12
|
* MediaWiki reader: Support skipped level in lists.John MacFarlane2012-09-12
| | | | | | | | | For example: # one # two ### skip! ### skip
* MediaWiki reader: Fixed charsInTags parser to use innerText.John MacFarlane2012-09-12
|
* Minor fixes to MediaWiki reader.John MacFarlane2012-09-12
|
* Added basic mediawiki reader.John MacFarlane2012-09-12
| | | | | Text.Pandoc.Readers.MediaWiki module, tests/mediawiki-reader.{txt,native}.
* Export 'nested' in Parsing.John MacFarlane2012-09-12
|
* Text.Pandoc.Parsing: Handle trailing slash in 'uri'.John MacFarlane2012-09-12
|
* HTML writer: Improve line breaks with `<dd>` tags.John MacFarlane2012-09-12
| | | | | We now put a newline between `</dd>` and `<dd>` when there are multiple definitions.
* LaTeX reader: Better error messages for environments.John MacFarlane2012-09-09
| | | | | Now it should tell you that it was looking for \end{env}, instead of giving "unknown parse error."
* LaTeX reader: guard against "begin"/"end" in blockCommand.John MacFarlane2012-09-09
|
* LaTeX reader: Guard against "begin", "end" in inlineCommand.John MacFarlane2012-09-09
| | | | Removed these from list of inline commands.
* HTML reader: Handle nested `<q>` tags properly.John MacFarlane2012-09-09
|
* Parsing: Generalized type of withQuoteContext.John MacFarlane2012-09-09
|
* HTML reader: Parse <q> as Quoted DoubleQuote.John MacFarlane2012-09-09
|