From 60bd289c18e06e199260ee374ef29e3017bc4a90 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 1 Jun 2016 14:58:58 -0700 Subject: renderer: no_linebreaks instead of no_wrap. We generally want this option to prohibit any breaking in things like headers (not just wraps, but softbreaks). --- src/render.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/render.h') diff --git a/src/render.h b/src/render.h index 479936a..c3acf6b 100644 --- a/src/render.h +++ b/src/render.h @@ -20,7 +20,7 @@ struct cmark_renderer { bufsize_t last_breakable; bool begin_line; bool begin_content; - bool no_wrap; + bool no_linebreaks; bool in_tight_list_item; void (*outc)(struct cmark_renderer *, cmark_escaping, int32_t, unsigned char); void (*cr)(struct cmark_renderer *); -- cgit v1.2.3