summaryrefslogtreecommitdiff
path: root/Pancake
AgeCommit message (Collapse)Author
2017-11-24Make div indentation optionaldefanor
2017-11-23Use default pandoc extensionsdefanor
Identifiers get handled better with those. And since they also add divs, rendering of lists of blocks is slightly improved to avoid unnecessary spacing.
2017-11-23Allow user-defined digits and radices for reference numberingdefanor
2017-11-21Try to split lines on spaces during aggressive splittingdefanor
2017-11-21Adjust table column widths more evenlydefanor
2017-11-21Restore ^{} for superscripts and similar text bits in Emacsdefanor
Superscripts and subscripts, as they were rendered, shorten lines in GUI Emacs, breaking tables if those contained subscripts or superscripts. In terminal Emacs, they were just indistinguishable from regular text. And there was a minor hack for these. Mostly undoing that (for strikethrough as well), though leaving slight raising.
2017-11-17Narrow footnotesdefanor
The "note N" strings add to the overall width, so the width of notes themselves should be reduced. It's different in CLI and Emacs, and rather imprecise here, so can still be improved -- but at least overflow is unlikely now.
2017-11-16Handle SIGINT during getLinedefanor
It is too easy to kill pancake by accident, while trying to interrupt a child process that finishes by itself right at that moment. So, only quitting if there's two interruptions in a row (without any input between them). Minor refactoring has also happened in this commit.
2017-11-11Fix shortcut command parsingdefanor
2017-11-10Handle notesdefanor
2017-11-09Respect table column alignments provided by pandocdefanor
2017-11-08Add dir.xiph.org search and xspf/m3u handlingdefanor
2017-11-08Colorize code inlines and blocksdefanor
2017-11-08Do not underline headingsdefanor
2017-11-08Colorize terms in definition listsdefanor
2017-11-08Adjust spacing between blocksdefanor
2017-11-08Denote headingsdefanor
2017-11-07Let Emacs to render subscripts, superscripts, strikethroughdefanor
That is, add `Styled` constructors for those.
2017-11-06Lint the codedefanor
2017-11-05Introduce denotations, buttonize links in emacsdefanor
Styled elements now can be denoted, so that the emacs interface can buttonize links, while it is still easy to ignore the semantics and just render those elements. The emacs interface is more mouse- and TAB-friendly now.
2017-11-05Provide current URI to pancake-modedefanor
And add a command for displaying and copying it.
2017-11-05Add Project Gutenberg search shortcut into the default configurationdefanor
2017-11-05Split words aggresively when they don't fitdefanor
This is mostly needed for tables.
2017-11-05Fix table cell links and identifiersdefanor
Fix link enumeration, and store the identifiers.
2017-11-05Read metadatadefanor
Reading effective URI and content type (if those are available) now, aiming `curl -w` or similar commands. Not a particularly nice way, and complicates both the program and the configuration, but sometimes file name extensions are deceptive.
2017-11-05Allow to set document types explicitlydefanor
2017-11-05Use Parsec for command parsingdefanor
2017-11-05Split into modulesdefanor