Skip to content

Commit

Permalink
Generate html for new markdown files: CONTRIBUTING, RELEASE_PROCEDURE
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilda committed Jan 17, 2013
1 parent e63fbbe commit f4f43d2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions dist/release-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,22 @@ markdown_to_html()
output_filename=${readme//.md/.html}
output_filename=${output_filename//.MD/.html}
$DIR/github-flavored-markdown.rb $readme > $output_filename

# Now process the contributing markdown
cd $DIR/../
markdown_filename=CONTRIBUTING.md
echo "Processing $markdown_filename"
output_filename=${markdown_filename//.md/.html}
output_filename=${output_filename//.MD/.html}
$DIR/github-flavored-markdown.rb $markdown_filename > $output_filename

# Now process the release procedure markdown
cd $DIR/../
markdown_filename=RELEASE_PROCEDURE.md
echo "Processing $markdown_filename"
output_filename=${markdown_filename//.md/.html}
output_filename=${output_filename//.MD/.html}
$DIR/github-flavored-markdown.rb $markdown_filename > $output_filename
}

regenerate()
Expand Down

0 comments on commit f4f43d2

Please sign in to comment.