| Age | Commit message (Collapse) | Author | 
|---|
|  | Closes #290. | 
|  |  | 
|  | We generally want this option to prohibit any breaking
in things like headers (not just wraps, but softbreaks). | 
|  | This is like `begin_line` except that it doesn't trigger
production of the prefix.  So it can be set after an initial
prefix (say `> `) is printed by the renderer, and consulted
in determining whether to escape content that has a special
meaning at the beginning of a line.
Used in the commonmark renderer. | 
|  | * Reformatted all source files.
* Added 'format' target to Makefile.
* Removed 'astyle' target.
* Updated .editorconfig. | 
|  |  | 
|  |  | 
|  |  | 
|  | Added options argument to render_node function, and rearrange
argument order. | 
|  | Now we just calculate this in the latex renderer. | 
|  | * Added functions for cr, blankline, out to renderer object.
* Removed lit (we'll handle this with a macro).
* Changed type of out so it takes a regular string instead of
  a chunk.
* Use macros LIT, OUT, BLANKLINE, CR in renderers to simplify code.
  (Not sure about this, but `renderer->out(renderer, ...)` sure is
  verbose.) | 
|  |  | 
|  | * Added render.c, render.h.
* Moved common functions and definitions from latex.c and commonmark.c
  to render.c, render.h.
* Added a wrapper, cmark_render, that creates a renderer given a
  character-escaper and a node renderer.
Closes #63. |