-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from jelovirt/feature/table-block-content
Table block content
- Loading branch information
Showing
9 changed files
with
450 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<topic xmlns:ditaarch="http://dita.oasis-open.org/architecture/2005/" | ||
ditaarch:DITAArchVersion="2.0" | ||
specializations="@props/audience @props/deliveryTarget @props/otherprops @props/platform @props/product" | ||
class="- topic/topic " | ||
id="tables"> | ||
<title class="- topic/title ">Table with block content</title> | ||
<body class="- topic/body "> | ||
<table class="- topic/table "> | ||
<tgroup class="- topic/tgroup " cols="3"> | ||
<colspec class="- topic/colspec " colname="col1"/> | ||
<colspec class="- topic/colspec " colname="col2"/> | ||
<colspec class="- topic/colspec " colname="col3"/> | ||
<thead class="- topic/thead "> | ||
<row class="- topic/row "> | ||
<entry class="- topic/entry ">A</entry> | ||
<entry class="- topic/entry ">B</entry> | ||
<entry class="- topic/entry ">C</entry> | ||
</row> | ||
</thead> | ||
<tbody class="- topic/tbody "> | ||
<row class="- topic/row "> | ||
<entry class="- topic/entry "> | ||
<p class="- topic/p ">A1 <b class="+ topic/ph hi-d/b ">bold</b></p> | ||
<p class="- topic/p ">A1</p> | ||
</entry> | ||
<entry class="- topic/entry "> | ||
<p class="- topic/p ">B1</p> | ||
<p class="- topic/p "><b class="+ topic/ph hi-d/b ">bold</b> B1</p> | ||
</entry> | ||
<entry class="- topic/entry "> | ||
<p class="- topic/p "><b class="+ topic/ph hi-d/b ">C1</b></p> | ||
<p class="- topic/p ">C1</p> | ||
</entry> | ||
</row> | ||
<row class="- topic/row "> | ||
<entry class="- topic/entry " align="left"> | ||
<p class="- topic/p ">A2 <b class="+ topic/ph hi-d/b ">bold</b></p> | ||
</entry> | ||
<entry class="- topic/entry " align="center"> | ||
<p class="- topic/p ">B2</p> | ||
</entry> | ||
<entry class="- topic/entry " align="right"> | ||
<p class="- topic/p "><b class="+ topic/ph hi-d/b ">C2</b></p> | ||
</entry> | ||
</row> | ||
<row class="- topic/row "> | ||
<entry class="- topic/entry " namest="col1" nameend="col2"> | ||
<p class="- topic/p ">A3</p> | ||
<p class="- topic/p ">B3</p> | ||
</entry> | ||
<entry class="- topic/entry " morerows="1"> | ||
<p class="- topic/p ">C3</p> | ||
</entry> | ||
</row> | ||
<row class="- topic/row "> | ||
<entry class="- topic/entry "> | ||
<codeblock class="+ topic/pre pr-d/codeblock ">A4</codeblock> | ||
</entry> | ||
<entry class="- topic/entry "> | ||
<ol class="- topic/ol "> | ||
<li class="- topic/li ">B4</li> | ||
</ol> | ||
</entry> | ||
</row> | ||
</tbody> | ||
</tgroup> | ||
</table> | ||
</body> | ||
</topic> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<?xml version="1.0" encoding="UTF-8"?><pandoc><div><header id="tables" level="1">Table with block content</header><div><table><col/><col/><col/><thead><tr><tablecell>A</tablecell><tablecell>B</tablecell><tablecell>C</tablecell></tr></thead><tbody><tr><tablecell><para>A1 <strong>bold</strong></para> <para>A1</para></tablecell><tablecell><para>B1</para> <para><strong>bold</strong> B1</para></tablecell><tablecell><para><strong>C1</strong></para> <para>C1</para></tablecell></tr><tr><tablecell align="left"><para>A2 <strong>bold</strong></para></tablecell><tablecell align="center"><para>B2</para></tablecell><tablecell align="right"><para><strong>C2</strong></para></tablecell></tr><tr><tablecell colspan="2"><para>A3</para> <para>B3</para></tablecell><tablecell rowspan="2"><para>C3</para></tablecell></tr><tr><tablecell><codeblock xml:space="preserve">A4</codeblock></tablecell><tablecell><orderedlist><li><plain>B4</plain></li></orderedlist></tablecell></tr></tbody></table></div></div></pandoc> |
Oops, something went wrong.