Created
October 5, 2012 19:18
-
-
Save epost/3841798 to your computer and use it in GitHub Desktop.
Show README.md as part of a project summary in Gitweb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Convert README.md (Markdown file) to HTML and include in output #using external Markdown | |
if (!$prevent_xss) { | |
$file_name = "README.md"; | |
my $proj_head_hash = git_get_head_hash($project); | |
my $readme_blob_hash = git_get_hash_by_path($proj_head_hash, "README.md", "blob"); | |
if ($readme_blob_hash) { # if README.md exists | |
print "<div class=\"header\">readme</div>\n"; | |
print "<div class=\"readme page_body\">"; # TODO find/create a better CSS class than page_body | |
my $cmd_markdownify = $GIT . " " . git_cmd() . " cat-file blob " . $readme_blob_hash . " | markdown |"; | |
open FOO, $cmd_markdownify or die_error(500, "Open git-cat-file blob '$hash' failed"); | |
while (<FOO>) { | |
print $_; | |
} | |
close(FOO); | |
print "</div>"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment