1
0
mirror of https://github.com/djohnlewis/stackdump synced 2025-12-07 00:13:33 +00:00

Added markdown parsing for comments so links in comments now appear properly.

Also rewrote part of the HTML rewriting code so it doesn't introduce an additional wrapping element in the output which was added due to a html5lib requirements on input.
This commit is contained in:
Samuel Lai
2012-12-15 21:43:06 +11:00
parent 5ac8492f38
commit 993bee4fc1
33 changed files with 5217 additions and 10 deletions

View File

@@ -278,6 +278,12 @@ li .post-comment-text {
margin-bottom: 0;
}
/* this rule is needed as comments are wrapped in <p>...</p> but we want the
* user name afterwards to appear on the same line. */
li .post-comment-text > p {
display: inline;
}
li .post-comment-metadata {
color: #999999;
}