-
Notifications
You must be signed in to change notification settings - Fork 479
Open
Labels
enhancementAn issue for a feature or an overall improvementAn issue for a feature or an overall improvement
Description
Dokka doesn't support table alignment.
Example:
/**
* | Left-aligned | Center-aligned | Right-aligned |
* |:-------------|:-------------:|-------------:|
* | Left | Center | Right |
* | Left | Center | Right |
*/
Dokka output:
IDE output as example:
Javadoc
Table alignment is not supported in Javadoc as well, in particular in Javadoc Markdown comments.
For this example:
/// | Left-aligned | Center-aligned | Right-aligned |
/// |:-------------|:-------------:|-------------:|
/// | Left | Center | Right |
/// | Left | Center | Right |
MarkdownToHtmlConverter is returning:
<table>
<thead>
<tr>
<th>Left-aligned</th>
<th align="center">Center-aligned</th>
<th align="right">Right-aligned</th>
</tr>
</thead>
<tbody>
<tr>
<td>Left</td>
<td align="center">Center</td>
<td align="right">Right</td>
</tr>
<tr class="intellij-row-even">
<td>Left</td>
<td align="center">Center</td>
<td align="right">Right</td>
</tr>
</tbody>
</table>
So, these html tags with parameters should also be supported.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementAn issue for a feature or an overall improvementAn issue for a feature or an overall improvement