Page MenuHomePhabricator

would like to have list in table with remarkup or html syntax.
Closed, WontfixPublic

Description

I want list somethings in table. So I wrote following
(It seems like remarkup syntax can't do this, So use html syntax)

<table>
  <tr>
    <th>Step</th>
    <th>Description</th>
  </tr>
  <tr>
    <td>
     Step 1
     </td>
     <td>
* Do A first
* Do B next
      </td>
     </tr>
</table>

I expect following

+-----------------------------------------+
| Step  | Description                     |
+-----------------------------------------+
| Setp1 | * Do A first                    |
|       | * Do B next                     |
+-----------------------------------------+

But actually It looks like

StepDescription
Step 1
* Do A first
* Do B next

I think this is related T5393 task.

PS. Sorry for my POOR English.

Event Timeline

seungrye raised the priority of this task from to Wishlist.
seungrye updated the task description. (Show Details)
seungrye added projects: Remarkup, Phriction.
seungrye updated the task description. (Show Details)
seungrye added a subscriber: seungrye.
epriestley claimed this task.
epriestley added a subscriber: epriestley.

I don't currently plan to pursue this.