From 52be0b5b1fe492b3ff44e6ccd6dbfaed1eb88537 Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Sat, 12 Sep 2020 17:47:29 -0400 Subject: [PATCH] Fix syntax of #+ATTR_HTML The example in the "Tables in HTML export" section of the manual uses the old syntax: `border="2"' etc. Change it to use `:border 2' etc. --- doc/org-manual.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/org-manual.org b/doc/org-manual.org index 46498bd22..be60d99f6 100644 --- a/doc/org-manual.org +++ b/doc/org-manual.org @@ -12817,7 +12817,7 @@ following lines before the table in the Org file: #+cindex: @samp{ATTR_HTML}, keyword #+begin_example ,#+CAPTION: This is a table with lines around and between cells -,#+ATTR_HTML: border="2" rules="all" frame="border" +,#+ATTR_HTML: :border 2 :rules all :frame border #+end_example The HTML export back-end preserves column groupings in Org tables (see -- 2.25.4