Open solonovamax opened 2 months ago
An option to wrap lines after periods would be nice.
For example:
/** * This is some example text. Here is a second sentence. */
after formatting becomes
/** * This is some example text. * Here is a second sentence. */
Some edge cases:
/** * This is some example text. Here is a second sentence. * - This is a list item. This is a fourth sentence. */
/** * This is some example text. * Here is a second sentence. * - This is a list item. * This is a fourth sentence. */
/** * This is some example text. * Here is a second sentence. * - This is a list item. This is a fourth sentence. */
/** * This is some example text. Here is a second sentence. * | Header | Header 2 | * |--------|-----------| * | Foo | Bar. Baz. | */
becomes
/** * This is some example text. * Here is a second sentence. * | Header | Header 2 | * |--------|-----------| * | Foo | Bar. Baz. | */
oops hit enter on accident lol
An option to wrap lines after periods would be nice.
For example:
after formatting becomes
Some edge cases:
becomes