From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Re: org-table: missing vertical boundary when exported Date: Tue, 10 Jun 2014 10:34:59 -0500 Message-ID: References: <425643e10ffe7568a26049ef408851dd@mail.rickster.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45067) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WuO4j-0002z0-DT for emacs-orgmode@gnu.org; Tue, 10 Jun 2014 11:35:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WuO4i-0001MN-Be for emacs-orgmode@gnu.org; Tue, 10 Jun 2014 11:35:01 -0400 Received: from mail-ob0-x229.google.com ([2607:f8b0:4003:c01::229]:46119) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WuO4i-0001MB-6N for emacs-orgmode@gnu.org; Tue, 10 Jun 2014 11:35:00 -0400 Received: by mail-ob0-f169.google.com with SMTP id wp18so5205034obc.0 for ; Tue, 10 Jun 2014 08:34:59 -0700 (PDT) In-Reply-To: <425643e10ffe7568a26049ef408851dd@mail.rickster.com> 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: Rick Frankel Cc: emacs-orgmode , Shiyuan On Tue, Jun 10, 2014 at 8:23 AM, Rick Frankel wrote: > On 2014-06-07 17:15, Shiyuan wrote: >> >> I am following the manual >> example http://orgmode.org/worg/org-tutorials/tables.html [1]. But the >> two vertical boundary line on the very left and right >> is not showing up when exported to html. Anything I am missing? Thanks. > > > My guess is that it is related to the css being used to style the table > in your setup. Agreed. I just used `emacs -Q` with this minimal config: (add-to-list 'load-path "~/.elisp/org.git/contrib/lisp/") (add-to-list 'load-path "~/.elisp/org.git/lisp/") Exporting the following simple table yields no vertical lines at all, just two horizontal lines at the top and bottom of the table: * test | | | | | A | B | C | | 1 | 2 | 3 | | a | b | c | If I use something like the old Worg css sheet, however, I get a box around the table: #+html_head: So, I believe it's related to the css. There's an entry in the Worg css like so: table { border: none; } So I'm guessing that can be changed (there's entries for td and th as well, which seem relevant). Now that I actually look at it, I don't know why the table has a box around it since all the borders say "none"... but I'm not a css guy :) John > > Could you post a minimal example with the html output? > > rick >