From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Subject: CSS and Publishing to HTML Tutorial Date: Thu, 8 Jul 2010 19:48:11 +1200 Message-ID: <201007081948.12773.ahcnz@ihug.co.nz> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=44804 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OWljT-0000iQ-KF for emacs-orgmode@gnu.org; Thu, 08 Jul 2010 03:41:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OWljS-0007OI-F8 for emacs-orgmode@gnu.org; Thu, 08 Jul 2010 03:41:19 -0400 Received: from mailfilter70.ihug.co.nz ([203.109.136.70]:38458) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OWljS-0007NN-58 for emacs-orgmode@gnu.org; Thu, 08 Jul 2010 03:41:18 -0400 Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org The Worg tutorial "Publishing Org-mode files to HTML" ran for me first time, so it seems excellent and well written. However I am trying to use a vanilla CSS, say ssheet1.css, located in ~/org/css" as per the tutorial. With only the following line at the end of my org file, #+STYLE: or even # STYLE: doing a view source of the HTML published page, shows that it includes the java stuff of org-export-html-style-export, shown below. I feel my defined CSS is being somehow compromised. I am hoping to tweek a CSS from the ground up, or choose a most suitable one from elsewhere. The only other thing, is that I fear my trial CGI Bash script is being clobbered by the Java, as its not working (its permission is OK). Maybe it needs to be enclosed within a unique style/type entry. #+STYLE: Below, I hope not at the risk of a friendship, I include the settings for; org-export-html-style org-export-html-style-default org-export-html-style-include-default org-publish-project-alist And these were noted after a successfuul org-publish operation. My question is, how should I unambiguously use a specific CSS, within the context of the "Publishing Org-mode files to HTML" tutorial. And whether including the CGI script is as simple as that above. Sorry for my confusion, I cannot see how or where to remove the Java stuff. If its as simple as 13.3.1 of the Org Mode manual, or by modifying the *scratch* evaluations of the tutorial, then I do apologize. Thanks, best, Adam. ;------------------------------------------------------ org-export-html-style "" org-export-html-style-default "" org-export-html-style-include-default t org-publish-project-alist (("org-notes" :base-directory "C:\\Adamstuff\\webp\\org\\" :base-extension "org" :publishing-directory "C:\\Adamstuff\\webp\\public_html\\" :recursive t :publishing-function org-publish-org-to-html :headline-levels ...) ("org-static" :base-directory "C:\\Adamstuff\\webp\\org\\" :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "C:\\Adamstuff\\webp\\public_html\\" :recursive t :publishing-function org-publish-attachment) ("org" :components ("org-notes" "org-static")))