Moved README.html to docs.

This commit is contained in:
Erik C. Thauvin 2017-06-07 16:32:44 -07:00
parent 18fb2c0bdc
commit 3dd301baf2
10 changed files with 22 additions and 15 deletions

View file

@ -118,14 +118,14 @@ val semver = project {
exec {
taskName = "pandoc"
commandLine("pandoc",
"--from", "markdown_github",
val args = arrayOf("--from", "markdown_github",
"--to", "html5",
"-s",
"-c", "github-pandoc.css",
"-o", "README.html",
"README.md",
os = setOf(Os.LINUX, Os.MINGW, Os.CYGWIN))
"-o", "docs/README.html",
"README.md")
commandLine("pandoc", *args, os = setOf(Os.LINUX, Os.MINGW, Os.CYGWIN))
commandLine("cmd", "/c", "pandoc", *args, os = setOf(Os.WINDOWS))
}
versionEye {