public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* Convert Mediawiki tables to HTML tables
@ 2015-09-03 14:27 'Claude 3podi' via pandoc-discuss
       [not found] ` <90bd0e36-6c96-4b07-b9af-df69b92ec9b0-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: 'Claude 3podi' via pandoc-discuss @ 2015-09-03 14:27 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 735 bytes --]

Hello,

I need to convert Mediawiki tables to HTML tables.
The problem is, that I always get no borders in the HTML output...

Cann s.o help?

Kind regards
Claude

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/90bd0e36-6c96-4b07-b9af-df69b92ec9b0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 1175 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Convert Mediawiki tables to HTML tables
       [not found] ` <90bd0e36-6c96-4b07-b9af-df69b92ec9b0-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2015-09-03 15:19   ` Andre Castro
       [not found]     ` <55E864FC.90506-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Andre Castro @ 2015-09-03 15:19 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

maybe adding a css file with css for the table cells will do the trick

tables.css:

table
{                                                                                                

    border-spacing:
0;                                                                                 

    border-collapse:
collapse;                                                                         

}                                                                                                      

                                                                                                       

td{                                                                                                    

    border: 1px solid
black;                                                                           

}                                                                                                      

                                                                                                       

                                                                                                                 

conversion:

pandoc -f mediawiki -t html --css table.css  table.mw -o table.html

hope it helps

On 09/03/2015 04:27 PM, 'Claude 3podi' via pandoc-discuss wrote:
> Hello,
>
> I need to convert Mediawiki tables to HTML tables.
> The problem is, that I always get no borders in the HTML output...
>
> Cann s.o help?
>
> Kind regards
> Claude
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Convert Mediawiki tables to HTML tables
       [not found]     ` <55E864FC.90506-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2015-09-04 11:56       ` 'Claude 3podi' via pandoc-discuss
  0 siblings, 0 replies; 3+ messages in thread
From: 'Claude 3podi' via pandoc-discuss @ 2015-09-04 11:56 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 2305 bytes --]

Thank you very much... it works...



Am Donnerstag, 3. September 2015 17:19:11 UTC+2 schrieb Andre Castro:
>
> maybe adding a css file with css for the table cells will do the trick 
>
> tables.css: 
>
> table 
> {                                                                         
>                         
>
>     border-spacing: 
> 0;                                                                         
>         
>
>     border-collapse: 
> collapse;                                                                 
>         
>
> }                                                                         
>                               
>
>                                                                           
>                               
>
> td{                                                                       
>                               
>
>     border: 1px solid 
> black;                                                                     
>       
>
> }                                                                         
>                               
>
>                                                                           
>                               
>
>                                                                           
>                                         
>
> conversion: 
>
> pandoc -f mediawiki -t html --css table.css  table.mw -o table.html 
>
> hope it helps 
>
> On 09/03/2015 04:27 PM, 'Claude 3podi' via pandoc-discuss wrote: 
> > Hello, 
> > 
> > I need to convert Mediawiki tables to HTML tables. 
> > The problem is, that I always get no borders in the HTML output... 
> > 
> > Cann s.o help? 
> > 
> > Kind regards 
> > Claude 
> > 
>
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/032e1cee-20fa-4178-84f1-77576c43b523%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 3778 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-09-04 11:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-03 14:27 Convert Mediawiki tables to HTML tables 'Claude 3podi' via pandoc-discuss
     [not found] ` <90bd0e36-6c96-4b07-b9af-df69b92ec9b0-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2015-09-03 15:19   ` Andre Castro
     [not found]     ` <55E864FC.90506-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-09-04 11:56       ` 'Claude 3podi' via pandoc-discuss

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 NNTP newsgroup(s).