Is there any way in VSCodium to switch off the line wrapping for a section of a file, in my case a markdown file?
I'm writing as documentation in Markdown and want to include some tables.
Due to the fact that the target system/converter I'm using, which is mark, cannot handle manually wrapped cells, I have to stick to one text row being one table row. So for longer cell content, the line length is quickly exceeded and the table becomes an ugly mess of wrapped lines.
Currently I switch off wrapping completely but for the non-table parts, wrapping would be quite handy.
My idea would be to somehow instruct VSCodium to not wrap lines which start with a pipe (|
), which I have at the beginning of each table row.
Is there any way to achieve this?