Re: [O] org-html-head documentation mistake?

2018-01-15 Thread Bastien
Hi Adam,

> The docstring for org-html-head gives this example:

Thanks for reporting this, I fixed this using this example:

   
/**/
   

Can you check and report if this is correct?

Thanks,

-- 
 Bastien



[O] org-html-head documentation mistake?

2018-01-13 Thread Adam Porter
Hi,

The docstring for org-html-head gives this example:

#+BEGIN_SRC html

 p { color: #33 !important; font-size: 95% !important; }
]]>

#+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.