Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/CsQuery.MvcApp/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
##Sample MVC Application
## Sample MVC Application

This application contains a simple framework that lets you pipeline CsQuery into view rendering so you can perform manipulation of the HTML before it is finally rendered. This works by replacing the default view engine & controllers. The app shows a few things you can do with this.

Instructions for using this are below. To see how it works, just to look at the example app, especially the `HomeController.cs` and `AboutController.cs` classes.

####Configuration
#### Configuration

You'll need to copy several classes to your application. They are all found in the `CsQueryView` folder of the sample app:

Expand All @@ -19,7 +19,7 @@ Next, replace the default Razor engine with the CsQuery implementation, just add
ViewEngines.Engines.Add(new CsQueryViewEngine());


####Using It
#### Using It

To create a controller that can use CsQuery, just implement `ICsQueryController` in any controller. This exposes a new member of the controller:

Expand Down