From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Mismatched div in html export Date: Fri, 14 Nov 2008 15:13:15 -0600 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L15yi-00044r-Vt for emacs-orgmode@gnu.org; Fri, 14 Nov 2008 16:13:21 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L15yi-00044F-As for emacs-orgmode@gnu.org; Fri, 14 Nov 2008 16:13:20 -0500 Received: from [199.232.76.173] (port=45052 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L15yi-000446-5p for emacs-orgmode@gnu.org; Fri, 14 Nov 2008 16:13:20 -0500 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:44983) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L15yi-0005aa-3J for emacs-orgmode@gnu.org; Fri, 14 Nov 2008 16:13:20 -0500 Received: from Macintosh-5.local (pool-96-248-128-134.sbndin.dsl-w.verizon.net [96.248.128.134]) by mail.messagingengine.com (Postfix) with ESMTPSA id 5C6E3140B4 for ; Fri, 14 Nov 2008 16:13:17 -0500 (EST) 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 I believe I've found an unmatched div tag in html export. The problem occurs when the headlines of an export are set to 0, as in: #+OPTIONS: h:0 toc:nil Here's a sample org source file: ----------org source begins--------- #+TITLE: Test #+OPTIONS: h:0 toc:nil * Bullet point Here is some text. * Another Bullet point ** A sub point Some more text. ----------org source ends------------ The source above exports as the following html: ----------html output begins------- ...

Test

  • Bullet point

    Here is some text.

  • Another Bullet point
    • A sub point

      Some more text.

... ----------html output ends------- Thanks, Matt