Hello, Kaushal Modi <kaushal.m...@gmail.com> writes:
> From e57e9e798dd1a54cae7a633fc67e2f825b967eea Mon Sep 17 00:00:00 2001 > From: Kaushal Modi <kaushal.m...@gmail.com> > Date: Mon, 31 Jul 2017 14:30:40 -0400 > Subject: [PATCH] Respect :with-title in ox-html > > * lisp/ox-html.el (org-html--build-meta-info): Do not insert <title> > tag in HTML export if :with-title property is nil. Example: by > setting #+OPTIONS: title:nil [...] > + (when (plist-get info :with-title) > + (format "<title>%s</title>\n" title)) I would use `and' instead of `when' to stress the fact that we're interested in the return value. Otherwise, LGTM. Thank you. -- Nicolas Goaziou