From cd8edcf2d31cae8df29460841d9051f2df2dc85b Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Thu, 5 Oct 2017 10:44:05 +0200 Subject: [PATCH] Consistency and code highlighting improvements in canony docs --- help/markdown/todo-canopy.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/help/markdown/todo-canopy.md b/help/markdown/todo-canopy.md index 1918b70c43d..606e20490e6 100644 --- a/help/markdown/todo-canopy.md +++ b/help/markdown/todo-canopy.md @@ -6,7 +6,7 @@ In this tutorial we are looking at [Canopy](http://lefthandedgoat.github.io/cano ![alt text](pics/canopy/logo.jpg "Running canopy tests from FAKE") ## Setup your canopy project -Consider a simple canopy program.fs file: +Consider a simple canopy `program.fs` file: #r "canopy.dll" @@ -37,11 +37,11 @@ Although [Selenium](http://docs.seleniumhq.org/) (which is the framework behind install-package PhantomJS -Normally canopy loads PhantomJS.exe from C:\ but in our case we want to use the installed one so we have to override the path in our test script and set the current path as location of PhantomJS.exe. +Normally canopy loads `PhantomJS.exe` from `C:\` but in our case we want to use the installed one so we have to override the path in our test script and set the current path as location of `PhantomJS.exe`. ## Run canopy tests in FAKE -The target in FAKE basically hosts the website in IIS Express and starts the canopy tests. IISExpress requires a configuration template ("iisexpress-template.config") which can be copied from %ProgramFiles%\IIS Express\AppServer\applicationhost.config. +The target in FAKE basically hosts the website in IIS Express and starts the canopy tests. IIS Express requires a configuration template (`"iisexpress-template.config"`) which can be copied from `%ProgramFiles%\IIS Express\AppServer\applicationhost.config`. This sample target will require the [`FAKE.IIS package`](http://fsharp.github.io/FAKE/iis.html) to be installed and referenced in your script, though the package isn't required to run Canopy tests. @@ -63,4 +63,4 @@ This sample target will require the [`FAKE.IIS package`](http://fsharp.github.io if result <> 0 then failwith "Failed result from canopy tests" ) -Please note that HostWebsite starts the IISExpress process asynchronous and does NOT wait until the IISExpress successfully started. [Issue #403](https://github.com/fsharp/FAKE/issues/403) +Please note that HostWebsite starts the IIS Express process asynchronous and does NOT wait until the IIS Express successfully started. [Issue #403](https://github.com/fsharp/FAKE/issues/403)