From 3045ea1c01ec6709877082e1825cf25389d68393 Mon Sep 17 00:00:00 2001 From: ManuelLeitner Date: Tue, 10 Nov 2020 11:07:42 +0100 Subject: [PATCH] Update README.md fix format --- examples/CsQuery.MvcApp/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/CsQuery.MvcApp/README.md b/examples/CsQuery.MvcApp/README.md index 6f3b37bc..cd1ce56b 100644 --- a/examples/CsQuery.MvcApp/README.md +++ b/examples/CsQuery.MvcApp/README.md @@ -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: @@ -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: