1. Preserve single newlines that people typed in: Often people hit Return only once, and their intended formatting becomes a wall of text. Hacker News preserves the newline in the HTML.
.commtext {
white-space: pre-wrap;
}
.commtext .reply {
white-space: normal; /* fix extraneous whitespace caused by first rule */
}
2. Vertical lines to visually represent thread depth!
1. Preserve single newlines that people typed in: Often people hit Return only once, and their intended formatting becomes a wall of text. Hacker News preserves the newline in the HTML.
2. Vertical lines to visually represent thread depth!