diff options
author | Eric Wong <e@80x24.org> | 2019-01-01 11:44:51 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-02-13 11:53:56 -0500 |
commit | 2843093cb4f1ef9bc62f2ed2451a503c386c388a (patch) | |
tree | 5fa6487f20dd44ad0b4e9aa5df9df784b50a657a /ui-commit.c | |
parent | Improve pageheader display on text-based browsers (diff) | |
download | cgit-pink-2843093cb4f1ef9bc62f2ed2451a503c386c388a.tar.gz cgit-pink-2843093cb4f1ef9bc62f2ed2451a503c386c388a.zip |
Use <pre> for commit-msg
This preserves formatting readable for users of text-based browsers without CSS support.
Diffstat (limited to '')
-rw-r--r-- | ui-commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-commit.c b/ui-commit.c index 7d87c0a..ee5d2c7 100644 --- a/ui-commit.c +++ b/ui-commit.c @@ -121,11 +121,11 @@ void cgit_print_commit(char *hex, const char *prefix) cgit_close_filter(ctx.repo->commit_filter); show_commit_decorations(commit); html("</div>"); - html("<div class='commit-msg'>"); + html("<pre class='commit-msg'>"); cgit_open_filter(ctx.repo->commit_filter); html_txt(info->msg); cgit_close_filter(ctx.repo->commit_filter); - html("</div>"); + html("</pre>"); if (notes.len != 0) { html("<div class='notes-header'>Notes</div>"); html("<div class='notes'>"); |