From mboxrd@z Thu Jan 1 00:00:00 1970 From: "*" Subject: How to omit h1 title heading in HTML export? Date: Mon, 3 Jun 2013 12:20:30 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58041) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjYQr-0003Mv-Rq for emacs-orgmode@gnu.org; Mon, 03 Jun 2013 13:20:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UjYQp-0006EW-6o for emacs-orgmode@gnu.org; Mon, 03 Jun 2013 13:20:33 -0400 Received: from mail-vb0-x22a.google.com ([2607:f8b0:400c:c02::22a]:57826) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjYQp-0006EJ-3X for emacs-orgmode@gnu.org; Mon, 03 Jun 2013 13:20:31 -0400 Received: by mail-vb0-f42.google.com with SMTP id w15so2816788vbf.1 for ; Mon, 03 Jun 2013 10:20:30 -0700 (PDT) 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Dear list When exporting an Org-mode file to HTML, I have noticed the following: the first child of the div with id=content is an h1 heading enclosing the filename (minus extension), or the value of TITLE keyword. How can I keep HTML export from producing this h1 heading? For instance say I have a homepage.org file, and that I export this file to HTML with default settings. In the exported HTML file, I would find the following snippet:

homepage

For what I'm doing, it would be better if the exported file didn't include the line

homepage

How can I tell HTML export to not put this line in the file that it produces? At the moment my fix is some CSS... div#content > h1:first-child { display: none; } I'm using Org-mode version 8.0.3, Emacs 24.3.1 Best...