From eb1e4316b7f553255286d1ce2ab081c9cb84e878 Mon Sep 17 00:00:00 2001 From: Mordechai Zuber Date: Sun, 26 Feb 2017 07:14:01 +0200 Subject: [PATCH] Wyam documentation --- .gitignore | 3 ++- config.wyam | 4 ++++ input/about.md | 3 +++ theme/index.cshtml | 3 +++ 4 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 config.wyam create mode 100644 input/about.md create mode 100644 theme/index.cshtml diff --git a/.gitignore b/.gitignore index 6e291ec94d..d1463bd549 100644 --- a/.gitignore +++ b/.gitignore @@ -212,4 +212,5 @@ artifacts/ **/BenchmarkDotNet.Artifacts/ #CodeCoverage -**/CodeCoverage/* \ No newline at end of file +**/CodeCoverage/* +docs/ diff --git a/config.wyam b/config.wyam new file mode 100644 index 0000000000..3a4b64c540 --- /dev/null +++ b/config.wyam @@ -0,0 +1,4 @@ +#recipe Docs +Settings[Keys.Host] = "imagesharp.org"; +Settings[Keys.Title] = "Image Sharp"; +FileSystem.OutputPath = "./docs"; \ No newline at end of file diff --git a/input/about.md b/input/about.md new file mode 100644 index 0000000000..42739928ae --- /dev/null +++ b/input/about.md @@ -0,0 +1,3 @@ +Title: About This Project +--- +This project is awesome! \ No newline at end of file diff --git a/theme/index.cshtml b/theme/index.cshtml new file mode 100644 index 0000000000..d3656f800b --- /dev/null +++ b/theme/index.cshtml @@ -0,0 +1,3 @@ +Title: Home +--- +Welcome to the documentation for ImageSharp \ No newline at end of file