You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Very often, tables in adoc don't look too good for visual presentation, especially after converting from other formats. Also, we need to format tables in a more readable way for humans. Now, we have to align the table elements manually.
It would be great to have the same functionality to control tables visually as the MarkdownTablePrettify-VSCodeExt plugin has.
I saw the post asciidoctor/atom-language-asciidoc#140 and even agree in some ways. After two days of researching, I could not find an acceptable algorithm for bypassing tables precisely because of the table customization options in adoc.
Perhaps, we should restrict the usage of the table formatting and limit ourselves to the simple option.
The text was updated successfully, but these errors were encountered:
The practice of putting multiple table cells on the same line is considered an anti-pattern in the AsciiDoc ecosystem, largely for this reason. AsciiDoc allows each cell to be placed on its own line, similar to the style of a list. I would dislike seeing an IDE encouraging the use of spaces to align columns in the table source. It makes the document harder to edit and encourages the busy work of aligning cells in a column. I would much prefer the IDE rearrange cells horizontally, with an empty line to separate rows.
My version of the new feature is rather a very rare case when we get an adoc file from another format such as docx.
That's when we have to do table formatting for better human readability.
Why the new feature should be added
Very often, tables in adoc don't look too good for visual presentation, especially after converting from other formats. Also, we need to format tables in a more readable way for humans. Now, we have to align the table elements manually.
It would be great to have the same functionality to control tables visually as the MarkdownTablePrettify-VSCodeExt plugin has.
How the new feature should work
We have two tables as examples in this case:
and
I saw the post asciidoctor/atom-language-asciidoc#140 and even agree in some ways. After two days of researching, I could not find an acceptable algorithm for bypassing tables precisely because of the table customization options in adoc.
Perhaps, we should restrict the usage of the table formatting and limit ourselves to the simple option.
The text was updated successfully, but these errors were encountered: