From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Porter Subject: org-html-head documentation mistake? Date: Sat, 13 Jan 2018 18:26:48 -0600 Message-ID: <87zi5hl1yv.fsf@alphapapa.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40894) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eaW90-0001kM-8t for emacs-orgmode@gnu.org; Sat, 13 Jan 2018 19:27:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eaW8x-0004gW-3D for emacs-orgmode@gnu.org; Sat, 13 Jan 2018 19:27:26 -0500 Received: from [195.159.176.226] (port=40275 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eaW8w-0004ep-SD for emacs-orgmode@gnu.org; Sat, 13 Jan 2018 19:27:23 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1eaW6d-0001DP-Ng for emacs-orgmode@gnu.org; Sun, 14 Jan 2018 01:24:59 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org Hi, The docstring for org-html-head gives this example: #+BEGIN_SRC html #+END_SRC When I customized the variable, I used those "CDATA" lines exactly, but they prevented the stylesheet I added from working in the browser (Chrome in this case). When I changed the "CDATA" lines to the ones that are in org-html-style-default, it worked: #+BEGIN_SRC html #+END_SRC So I'm guessing that the docs need to be updated. Thanks.