@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Correct table documentation in Remarkup reference

Summary: Ref T10570. Earlier work on that task made tables activate even if indented so they work in quoted blocks. However, the documentation doesn't explicitly mark them in code blocks, so it turned them into markup.

Test Plan:
Used `bin/diviner generate` to regenerate documentation, verified it now renders properly.

{F1205818}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10570

Differential Revision: https://secure.phabricator.com/D15619

+28 -24
+28 -24
src/docs/user/userguide/remarkup.diviner
··· 532 532 533 533 Remarkup supports simple table syntax. For example, this: 534 534 535 - | Fruit | Color | Price | Peel? 536 - | ----- | ----- | ----- | ----- 537 - | Apple | red | `$0.93` | no 538 - | Banana | yellow | `$0.19` | **YES** 535 + ``` 536 + | Fruit | Color | Price | Peel? 537 + | ----- | ----- | ----- | ----- 538 + | Apple | red | `$0.93` | no 539 + | Banana | yellow | `$0.19` | **YES** 540 + ``` 539 541 540 542 ...produces this: 541 543 ··· 546 548 547 549 Remarkup also supports a simplified HTML table syntax. For example, this: 548 550 549 - <table> 550 - <tr> 551 - <th>Fruit</th> 552 - <th>Color</th> 553 - <th>Price</th> 554 - <th>Peel?</th> 555 - </tr> 556 - <tr> 557 - <td>Apple</td> 558 - <td>red</td> 559 - <td>`$0.93`</td> 560 - <td>no</td> 561 - </tr> 562 - <tr> 563 - <td>Banana</td> 564 - <td>yellow</td> 565 - <td>`$0.19`</td> 566 - <td>**YES**</td> 567 - </tr> 568 - </table> 551 + ``` 552 + <table> 553 + <tr> 554 + <th>Fruit</th> 555 + <th>Color</th> 556 + <th>Price</th> 557 + <th>Peel?</th> 558 + </tr> 559 + <tr> 560 + <td>Apple</td> 561 + <td>red</td> 562 + <td>`$0.93`</td> 563 + <td>no</td> 564 + </tr> 565 + <tr> 566 + <td>Banana</td> 567 + <td>yellow</td> 568 + <td>`$0.19`</td> 569 + <td>**YES**</td> 570 + </tr> 571 + </table> 572 + ``` 569 573 570 574 ...produces this: 571 575