diff --git a/README.md b/README.md index 0c61ded..a3f17f1 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,6 @@ # ClosedXML [![Build status](https://ci.appveyor.com/api/projects/status/wobbmnlbukxejjgb?svg=true)](https://ci.appveyor.com/project/Pyropace/closedxml) - we are in process of moving the project from codeplex to github - Documentations to follow - ClosedXML makes it easier for developers to create Excel 2007/2010 files. It provides a nice object oriented way to manipulate the files (similar to VBA) without dealing with the hassles of XML Documents. It can be used by any .NET language like C# and Visual Basic (VB). ### Install ClosedXML via NuGet @@ -23,7 +20,9 @@ If you've ever used the Microsoft Open XML Format SDK you know just how much code you have to write to get the same results as the following 4 lines of code. - var workbook = new XLWorkbook(); - var worksheet = workbook.Worksheets.Add("Sample Sheet"); - worksheet.Cell("A1").Value = "Hello World!"; - workbook.SaveAs("HelloWorld.xlsx"); +```c# +var workbook = new XLWorkbook(); +var worksheet = workbook.Worksheets.Add("Sample Sheet"); +worksheet.Cell("A1").Value = "Hello World!"; +workbook.SaveAs("HelloWorld.xlsx"); +```