forked from dotnet/csharpstandard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow custom blocks (tables) to be used in lists
Enables dotnet#441 to be fixed
- Loading branch information
Showing
4 changed files
with
147 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# 1 Heading | ||
|
||
Before a list | ||
|
||
- List item | ||
|
||
<!-- Custom Word conversion: test --> | ||
<table> | ||
</table> | ||
|
||
More list text | ||
- Next list item |
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,109 @@ | ||
<doc> | ||
<p> | ||
<pPr> | ||
<pStyle val="Heading1" /> | ||
</pPr> | ||
<bookmarkStart name="_Toc00001" id="1" /> | ||
<r> | ||
<t space="preserve">Heading</t> | ||
</r> | ||
<bookmarkEnd id="1" /> | ||
</p> | ||
<p> | ||
<r> | ||
<t space="preserve">Before a list</t> | ||
</r> | ||
</p> | ||
<p> | ||
<pPr> | ||
<numPr> | ||
<pStyle val="ListParagraph" /> | ||
<ilvl val="0" /> | ||
<numId val="1" /> | ||
</numPr> | ||
</pPr> | ||
<r> | ||
<t space="preserve">List item</t> | ||
</r> | ||
</p> | ||
<p> | ||
<pPr> | ||
<pStyle val="TableLineBefore" /> | ||
</pPr> | ||
<r> | ||
<t /> | ||
</r> | ||
</p> | ||
<tbl> | ||
<tblPr> | ||
<tblStyle val="TableGrid" /> | ||
<tblW w="8000" /> | ||
<tblInd w="900" type="dxa" /> | ||
<tblBorders> | ||
<top val="single" /> | ||
<left val="single" /> | ||
<bottom val="single" /> | ||
<right val="single" /> | ||
<insideH val="single" /> | ||
<insideV val="single" /> | ||
</tblBorders> | ||
<tblCellMar /> | ||
</tblPr> | ||
<tr> | ||
<tc> | ||
<pPr> | ||
<pStyle val="TableCellNormal" /> | ||
<jc val="center" /> | ||
</pPr> | ||
<p> | ||
<r> | ||
<t>Normal cell</t> | ||
</r> | ||
</p> | ||
</tc> | ||
<tc> | ||
<pPr> | ||
<pStyle val="TableCellNormal" /> | ||
<jc val="center" /> | ||
</pPr> | ||
<p> | ||
<pPr> | ||
<pStyle val="Code" /> | ||
<ind left="0" /> | ||
</pPr> | ||
<r> | ||
<t>Code cell</t> | ||
</r> | ||
</p> | ||
</tc> | ||
</tr> | ||
</tbl> | ||
<p> | ||
<pPr> | ||
<pStyle val="TableLineAfter" /> | ||
</pPr> | ||
<r> | ||
<t /> | ||
</r> | ||
</p> | ||
<p> | ||
<pPr> | ||
<ind left="540" /> | ||
</pPr> | ||
<r> | ||
<t space="preserve">More list text</t> | ||
</r> | ||
</p> | ||
<p> | ||
<pPr> | ||
<numPr> | ||
<pStyle val="ListParagraph" /> | ||
<ilvl val="0" /> | ||
<numId val="1" /> | ||
</numPr> | ||
</pPr> | ||
<r> | ||
<t space="preserve">Next list item</t> | ||
</r> | ||
</p> | ||
</doc> |
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