* org-table-export, orgtbl-to-html, missing <table> tag
@ 2008-10-17 21:23 Sullivan, Gregory (US SSA)
2008-10-18 9:30 ` Carsten Dominik
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Sullivan, Gregory (US SSA) @ 2008-10-17 21:23 UTC (permalink / raw)
To: Org Mode List
[-- Attachment #1.1: Type: text/plain, Size: 394 bytes --]
Small bug with latest org from git (6.09a):
org-table-export, orgtbl-to-html
is missing the starting "<table>" tag.
--Greg
--
Gregory T. Sullivan, Ph.D.
BAE Systems Advanced Information Technologies
6 New England Executive Park, Burlington, MA 01803
781-262-4553 (office), 978-430-3461 (cell)
gregory.sullivan@baesystems.com <mailto:gregory.sullivan@baesystems.com>
[-- Attachment #1.2: Type: text/html, Size: 3575 bytes --]
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-table-export, orgtbl-to-html, missing <table> tag
2008-10-17 21:23 org-table-export, orgtbl-to-html, missing <table> tag Sullivan, Gregory (US SSA)
@ 2008-10-18 9:30 ` Carsten Dominik
2008-10-18 11:20 ` Maher Gamal
2008-10-19 9:21 ` Carsten Dominik
2008-10-19 9:23 ` Carsten Dominik
2 siblings, 1 reply; 6+ messages in thread
From: Carsten Dominik @ 2008-10-18 9:30 UTC (permalink / raw)
To: Sullivan, Gregory (US SSA); +Cc: Org Mode List
[-- Attachment #1.1: Type: text/plain, Size: 710 bytes --]
Hi Greg,
could you please be more specific?
- Carsten
On Oct 17, 2008, at 11:23 PM, Sullivan, Gregory (US SSA) wrote:
> Small bug with latest org from git (6.09a):
> org-table-export, orgtbl-to-html
> is missing the starting “<table>” tag.
> --Greg
> --
> Gregory T. Sullivan, Ph.D.
> BAE Systems Advanced Information Technologies
> 6 New England Executive Park, Burlington, MA 01803
> 781-262-4553 (office), 978-430-3461 (cell)
> gregory.sullivan@baesystems.com
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[-- Attachment #1.2: Type: text/html, Size: 4453 bytes --]
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-table-export, orgtbl-to-html, missing <table> tag
2008-10-18 9:30 ` Carsten Dominik
@ 2008-10-18 11:20 ` Maher Gamal
2008-10-18 12:33 ` Bernt Hansen
0 siblings, 1 reply; 6+ messages in thread
From: Maher Gamal @ 2008-10-18 11:20 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 1219 bytes --]
When you place the cursor on a table and execute 'org-table-export' , then
choose the html format, the HTML file produced has a missing <table> tag in
the beginning of the table.
On Sat, Oct 18, 2008 at 11:30 AM, Carsten Dominik <dominik@science.uva.nl>wrote:
> Hi Greg,
> could you please be more specific?
>
> - Carsten
>
> On Oct 17, 2008, at 11:23 PM, Sullivan, Gregory (US SSA) wrote:
>
> Small bug with latest org from git (6.09a):
> org-table-export, orgtbl-to-html
> is missing the starting "<table>" tag.
> --Greg
> --
> Gregory T. Sullivan, Ph.D.
> BAE Systems Advanced Information Technologies
> 6 New England Executive Park, Burlington, MA 01803
> 781-262-4553 (office), 978-430-3461 (cell)
> gregory.sullivan@baesystems.com
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>
--
Maher
http://maherg.blogspot.com
[-- Attachment #1.2: Type: text/html, Size: 3993 bytes --]
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-table-export, orgtbl-to-html, missing <table> tag
2008-10-18 11:20 ` Maher Gamal
@ 2008-10-18 12:33 ` Bernt Hansen
0 siblings, 0 replies; 6+ messages in thread
From: Bernt Hansen @ 2008-10-18 12:33 UTC (permalink / raw)
To: Maher Gamal; +Cc: emacs-orgmode
I can verify that.
,----[ x.org ]
| * One
| | A | B | C |
| |---+---+---|
| | 1 | 2 | 3 |
| | 4 | 5 | 6 |
`----
Put point in the table
M-x org-table-export
Export table to: /tmp/x.html
Format: orgtbl-to-html
results in the following file
,----[ x.html ]
|
| <col align="right"></col><col align="right"></col><col align="left"></col>
| <thead>
| <tr><th>A</th><th>B</th><th>C</th></tr>
| </thead>
| <tbody>
| <tr><td>1</td><td>2</td><td>3</td></tr>
| <tr><td>4</td><td>5</td><td>6</td></tr>
| </tbody>
| </table>
`----
-Bernt
"Maher Gamal" <mahergamal@gmail.com> writes:
> When you place the cursor on a table and execute 'org-table-export' , then
> choose the html format, the HTML file produced has a missing <table> tag in
> the beginning of the table.
>
> On Sat, Oct 18, 2008 at 11:30 AM, Carsten Dominik <dominik@science.uva.nl>
> wrote:
>
> Hi Greg,
>
> could you please be more specific?
>
> - Carsten
>
> On Oct 17, 2008, at 11:23 PM, Sullivan, Gregory (US SSA) wrote:
>
> Small bug with latest org from git (6.09a):
> org-table-export, orgtbl-to-html
> is missing the starting "<table>" tag.
> --Greg
> --
> Gregory T. Sullivan, Ph.D.
> BAE Systems Advanced Information Technologies
> 6 New England Executive Park, Burlington, MA 01803
> 781-262-4553 (office), 978-430-3461 (cell)
> gregory.sullivan@baesystems.com
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
> --
> Maher
> http://maherg.blogspot.com
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-table-export, orgtbl-to-html, missing <table> tag
2008-10-17 21:23 org-table-export, orgtbl-to-html, missing <table> tag Sullivan, Gregory (US SSA)
2008-10-18 9:30 ` Carsten Dominik
@ 2008-10-19 9:21 ` Carsten Dominik
2008-10-19 9:23 ` Carsten Dominik
2 siblings, 0 replies; 6+ messages in thread
From: Carsten Dominik @ 2008-10-19 9:21 UTC (permalink / raw)
To: Sullivan, Gregory (US SSA); +Cc: Bernt Hansen, Org Mode List
[-- Attachment #1.1: Type: text/plain, Size: 703 bytes --]
Fixed, thanks, also to Bernt and Maher.
- Carsten
On Oct 17, 2008, at 11:23 PM, Sullivan, Gregory (US SSA) wrote:
> Small bug with latest org from git (6.09a):
> org-table-export, orgtbl-to-html
> is missing the starting “<table>” tag.
> --Greg
> --
> Gregory T. Sullivan, Ph.D.
> BAE Systems Advanced Information Technologies
> 6 New England Executive Park, Burlington, MA 01803
> 781-262-4553 (office), 978-430-3461 (cell)
> gregory.sullivan@baesystems.com
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[-- Attachment #1.2: Type: text/html, Size: 4424 bytes --]
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-table-export, orgtbl-to-html, missing <table> tag
2008-10-17 21:23 org-table-export, orgtbl-to-html, missing <table> tag Sullivan, Gregory (US SSA)
2008-10-18 9:30 ` Carsten Dominik
2008-10-19 9:21 ` Carsten Dominik
@ 2008-10-19 9:23 ` Carsten Dominik
2 siblings, 0 replies; 6+ messages in thread
From: Carsten Dominik @ 2008-10-19 9:23 UTC (permalink / raw)
To: Sullivan, Gregory (US SSA); +Cc: Bernt Hansen, Org Mode List
[-- Attachment #1.1: Type: text/plain, Size: 703 bytes --]
Fixed, thanks, also to Bernt and Maher.
- Carsten
On Oct 17, 2008, at 11:23 PM, Sullivan, Gregory (US SSA) wrote:
> Small bug with latest org from git (6.09a):
> org-table-export, orgtbl-to-html
> is missing the starting “<table>” tag.
> --Greg
> --
> Gregory T. Sullivan, Ph.D.
> BAE Systems Advanced Information Technologies
> 6 New England Executive Park, Burlington, MA 01803
> 781-262-4553 (office), 978-430-3461 (cell)
> gregory.sullivan@baesystems.com
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
[-- Attachment #1.2: Type: text/html, Size: 4424 bytes --]
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-10-19 9:23 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-17 21:23 org-table-export, orgtbl-to-html, missing <table> tag Sullivan, Gregory (US SSA)
2008-10-18 9:30 ` Carsten Dominik
2008-10-18 11:20 ` Maher Gamal
2008-10-18 12:33 ` Bernt Hansen
2008-10-19 9:21 ` Carsten Dominik
2008-10-19 9:23 ` Carsten Dominik
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).