Pandoc Custom Readerã触ã£ã¦ã¿ãã(14)
ããããä½ã£ã¦ã¿ããã
headerA | headerB | |
---|---|---|
header1 | A1 | B1 |
header2 | A2 | B2 |
ãããã表ãä½ããã»ã«å ã§ã®æ¹è¡ã¯ãã£ããå¾åãã ã
1è¡ç®ãä½ãããããè¡ã«ãªãã
local row1 = pandoc.Row( { pandoc.Cell({}), pandoc.Cell({pandoc.Plain("headerA")}), pandoc.Cell({pandoc.Plain("headerB")}), } ) local table_header = pandoc.TableHead({ row1 })
2è¡ç®ã¨3è¡ç®ãTableBodyã®å®ç¾©ãèããã¨ããããã¨ãã以å¤ã«ãããå¿ è¦ãããã»ã»ã»ï¼
-- 2è¡ç® local row2_head = pandoc.Row( { pandoc.Cell({pandoc.Plain("header1")}), } ) local row2_body = pandoc.Row( { pandoc.Cell({pandoc.Plain("A1")}), pandoc.Cell({pandoc.Plain("B1")}), } ) -- 3è¡ç® local row3_head = pandoc.Row( { pandoc.Cell({pandoc.Plain("header2")}), } ) local row3_body = pandoc.Row( { pandoc.Cell({pandoc.Plain("A2")}), pandoc.Cell({pandoc.Plain("B2")}), } ) -- TableBody local table_body = { attr = {}, body = {row2_body, row3_body}, head = {row2_head, row3_head}, row_head_columns = 1 }
ããããªãï¼
ã§ãæå¾ã«Tableã«ããããã£ãã·ã§ã³ã¯ããããããªããããlongã¨shortã¨ä¸¡æ¹ä»ãã¦ã¿ãã
-- Table local table = pandoc.Table( { long = pandoc.Plain("longcaption"), short = pandoc.Str("shortcaption") }, { {pandoc.AlignDefault, 0.3}, {pandoc.AlignDefault, 0.3}, {pandoc.AlignDefault, 0.3} }, table_header, {table_body}, pandoc.TableFoot() )
å®è¡ãã¦ã¿ããã
> cat /dev/null |pandoc -f lua/table_exam.lua -t native [ Table ( "" , [] , [] ) (Caption (Just [ Str "shortcaption" ]) [ Plain [ Str "longcaption" ] ]) [ ( AlignDefault , ColWidth 0.3 ) , ( AlignDefault , ColWidth 0.3 ) , ( AlignDefault , ColWidth 0.3 ) ] (TableHead ( "" , [] , [] ) [ Row ( "" , [] , [] ) [ Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "headerA" ] ] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "headerB" ] ] ] ]) [ TableBody ( "" , [] , [] ) (RowHeadColumns 1) [ Row ( "" , [] , [] ) [ Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "header1" ] ] ] , Row ( "" , [] , [] ) [ Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "header2" ] ] ] ] [ Row ( "" , [] , [] ) [ Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "A1" ] ] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "B1" ] ] ] , Row ( "" , [] , [] ) [ Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "A2" ] ] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [ Plain [ Str "B2" ] ] ] ] ] (TableFoot ( "" , [] , [] ) []) ]
ãã¡ãããæå¾ éãã®ã¤ãããHTMLã«ãã¦ã¿ãã
<table style="width:90%;"> <caption>longcaption</caption> <colgroup> <col style="width: 30%" /> <col style="width: 30%" /> <col style="width: 30%" /> </colgroup> <thead> <tr class="header"> <th></th> <th>headerA</th> <th>headerB</th> </tr> </thead> <tbody> <tr class="odd"> <th>header1</th> <th></th> <th></th> </tr> <tr class="header"> <th>header2</th> <th></th> <th></th> </tr> <tr class="odd"> <th>A1</th> <td>B1</td> <td></td> </tr> <tr class="even"> <th>A2</th> <td>B2</td> <td></td> </tr> </tbody> </table>
ãããããã¯éããª(ç¬)ãMDNã®tableã®ãã¼ã¸ã®ã試ãç°å¢ã«ã³ãããã¦ã¿ãã
ãã¼ããããã¯tbodyã®ä¸ã«ãããè¡ãç½®ããããã¨ããæå³ãªã®ããªãã§ããheader1ãæ¸ãã¦ããè¡ã¯class="header"
ãã¤ãã¦ãªãã®ã§ã©ããããããã
ããã§ããã®ãã
-- 2è¡ç® local row2 = pandoc.Row( { pandoc.Cell({pandoc.Plain("header1")}), pandoc.Cell({pandoc.Plain("A1")}), pandoc.Cell({pandoc.Plain("B1")}), } ) -- 3è¡ç® local row3 = pandoc.Row( { pandoc.Cell({pandoc.Plain("header2")}), pandoc.Cell({pandoc.Plain("A2")}), pandoc.Cell({pandoc.Plain("B2")}), } ) -- TableBody local table_body = { attr = {}, body = {row2, row3}, head = {}, row_head_columns = 1 }
> cat /dev/null |pandoc -f lua/table_exam.lua -t html5 <table style="width:90%;"> <caption>longcaption</caption> <colgroup> <col style="width: 30%" /> <col style="width: 30%" /> <col style="width: 30%" /> </colgroup> <thead> <tr class="header"> <th></th> <th>headerA</th> <th>headerB</th> </tr> </thead> <tbody> <tr class="odd"> <th>header1</th> <td>A1</td> <td>B1</td> </tr> <tr class="even"> <th>header2</th> <td>A2</td> <td>B2</td> </tr> </tbody> </table>
è¯ãããã ãã¨ãããããããã§ãããã¨ã«ãããã