Is it possible to enforce a new line in a doc comment?
eg.
/// Performs a matrix multiplication.
/// dim(A) := i x j
/// dim(B) := j x k
pub fn mul(A: Matrix, B: Matrix) Matrix
But when I hover over the function in VSCode I get it all concatenated into a single line making it less visually clear.
If it's not possible to enforce a new line, what would you recommend as a seperator to make these statements visually distinct?