File tree Expand file tree Collapse file tree 4 files changed +47
-0
lines changed
tests/Integration/tests/markdown/table-md Expand file tree Collapse file tree 4 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ <!-- content start -->
2+ < div class ="section " id ="table-markdown ">
3+ < h1 > Table Markdown</ h1 >
4+
5+ < table >
6+ < thead >
7+ < tr >
8+ < th > Name</ th >
9+ < th > Age</ th >
10+ < th > City</ th >
11+ </ tr >
12+ </ thead >
13+ < tbody >
14+ < tr >
15+ < td > John Doe</ td >
16+ < td > 29</ td >
17+ < td > New York</ td >
18+ </ tr >
19+ < tr >
20+ < td > Jane Smith</ td >
21+ < td > 34</ td >
22+ < td > San Francisco</ td >
23+ </ tr >
24+ < tr >
25+ < td > Sam Green</ td >
26+ < td > 22</ td >
27+ < td > Boston</ td >
28+ </ tr >
29+ </ tbody >
30+ </ table >
31+ </ div >
32+ <!-- content end -->
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <guides xmlns =" https://www.phpdoc.org/guides"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" https://www.phpdoc.org/guides packages/guides-cli/resources/schema/guides.xsd"
5+ input-format =" md"
6+ >
7+ </guides >
Original file line number Diff line number Diff line change 1+ # Table Markdown
2+
3+ | Name | Age | City |
4+ | ------------| -----| --------------|
5+ | John Doe | 29 | New York |
6+ | Jane Smith | 34 | San Francisco|
7+ | Sam Green | 22 | Boston |
Original file line number Diff line number Diff line change 1+ Tables are currently not supported in Markdown
You can’t perform that action at this time.
0 commit comments