mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
The README file was converted to Markdown which is nice to read in the terminal and automatically formatted by GitHub. For Doxygen, the markdown is first converted to HTML.
8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# NOTE: The working directory should be the main capp directory when this script is run
|
|
|
|
markdown_binary=$*
|
|
|
|
$markdown_binary README.markdown >README.html
|