From c1efa4f3360afc4e20254238b284b66ef8a361b0 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 29 Oct 2019 21:35:28 +0100 Subject: [PATCH] LibMarkdown: Include a element when rendering MD to HTML This should really be handled by LibHTML, but just include a element for now, so generated man pages always have a . --- Libraries/LibMarkdown/MDDocument.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibMarkdown/MDDocument.cpp b/Libraries/LibMarkdown/MDDocument.cpp index 69d4de9905..539ad8f70d 100644 --- a/Libraries/LibMarkdown/MDDocument.cpp +++ b/Libraries/LibMarkdown/MDDocument.cpp @@ -11,6 +11,7 @@ String MDDocument::render_to_html() const builder.append("\n"); builder.append("\n"); + builder.append("\n"); builder.append("\n"); for (auto& block : m_blocks) {