Skip to content

Commit 88cb546

Browse files
Update README.md
Remove <style> not supported by GitHub markdown
1 parent b8b28e6 commit 88cb546

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed

README.md

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,44 +7,38 @@
77

88
# ASP.NET API Versioning
99

10-
<style>
11-
div.bullet {
12-
margin:-8px 0px 8px 0px
13-
}
14-
</style>
15-
1610
ASP.NET API versioning gives you a powerful, but easy-to-use method for adding API versioning semantics to your new and existing REST services built with ASP.NET. The API versioning extensions define simple metadata attributes and conventions that you use to describe which API versions are implemented by your services. You don't need to learn any new routing concepts or change the way you implement your services in ASP.NET today.
1711

1812
The default API versioning configuration is compliant with the [versioning semantics](https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md#12-versioning) outlined by the [Microsoft REST Guidelines](https://github.com/Microsoft/api-guidelines). There are also a number of customization and extension points available to support transitioning services that may not have supported API versioning in the past or supported API versioning with semantics that are different from the [Microsoft REST versioning guidelines](https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md#12-versioning).
1913

2014
The supported flavors of ASP.NET are:
2115

2216
* **ASP.NET Web API**
23-
<div class="bullet">Adds service API versioning to your Web API applications</div>
17+
<div>Adds service API versioning to your Web API applications</div>
2418

2519
[![NuGet Package](https://img.shields.io/nuget/v/Microsoft.AspNet.WebApi.Versioning.svg)](https://www.nuget.org/packages/Microsoft.AspNet.WebApi.Versioning)
2620
[![NuGet Downloads](https://img.shields.io/nuget/dt/Microsoft.AspNet.WebApi.Versioning.svg?color=green)](https://www.nuget.org/packages/Microsoft.AspNet.WebApi.Versioning)
2721
[![Quick Start](https://img.shields.io/badge/quick-start-9B6CD1)](../../wiki/New-Services-Quick-Start#aspnet-web-api)
2822
[![Examples](https://img.shields.io/badge/example-code-2B91AF)](../../tree/master/samples/webapi)
2923

3024
* **ASP.NET Web API and OData**
31-
<div class="bullet">Adds service API versioning to your Web API applications using OData v4.0</div>
25+
<div>Adds service API versioning to your Web API applications using OData v4.0</div>
3226

3327
[![NuGet Package](https://img.shields.io/nuget/v/Microsoft.AspNet.OData.Versioning.svg)](https://www.nuget.org/packages/Microsoft.AspNet.OData.Versioning)
3428
[![NuGet Downloads](https://img.shields.io/nuget/dt/Microsoft.AspNet.OData.Versioning.svg?color=green)](https://www.nuget.org/packages/Microsoft.AspNet.OData.Versioning)
3529
[![Quick Start](https://img.shields.io/badge/quick-start-9B6CD1)](../../wiki/New-Services-Quick-Start#aspnet-web-api-with-odata-v40)
3630
[![Examples](https://img.shields.io/badge/example-code-2B91AF)](../../tree/master/samples/webapi)
3731

3832
* **ASP.NET Core**
39-
<div class="bullet">Adds service API versioning to your ASP.NET Core applications</div>
33+
<div>Adds service API versioning to your ASP.NET Core applications</div>
4034

4135
[![NuGet Package](https://img.shields.io/nuget/v/Microsoft.AspNetCore.Mvc.Versioning.svg)](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.Versioning)
4236
[![NuGet Downloads](https://img.shields.io/nuget/dt/Microsoft.AspNetCore.Mvc.Versioning.svg?color=green)](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.Versioning)
4337
[![Quick Start](https://img.shields.io/badge/quick-start-9B6CD1)](../../wiki/New-Services-Quick-Start#aspnet-core)
4438
[![Examples](https://img.shields.io/badge/example-code-2B91AF)](../../tree/master/samples/aspnetcore)
4539

4640
* **ASP.NET Core and OData**
47-
<div class="bullet">Adds API versioning to your ASP.NET Core applications using OData v4.0</div>
41+
<div>Adds API versioning to your ASP.NET Core applications using OData v4.0</div>
4842

4943
[![NuGet Package](https://img.shields.io/nuget/v/Microsoft.AspNetCore.OData.Versioning.svg)](https://www.nuget.org/packages/Microsoft.AspNetCore.OData.Versioning)
5044
[![NuGet Downloads](https://img.shields.io/nuget/dt/Microsoft.AspNetCore.OData.Versioning.svg?color=green)](https://www.nuget.org/packages/Microsoft.AspNetCore.OData.Versioning)
@@ -54,31 +48,31 @@ The supported flavors of ASP.NET are:
5448
This is also the home of the ASP.NET API versioning API explorers that you can use to easily document your REST APIs with Swagger:
5549

5650
* **ASP.NET Web API Versioned API Explorer**
57-
<div class="bullet">Replaces the default API explorer in your Web API applications</div>
51+
<div>Replaces the default API explorer in your Web API applications</div>
5852

5953
[![NuGet Package](https://img.shields.io/nuget/v/Microsoft.AspNet.WebApi.Versioning.ApiExplorer.svg)](https://www.nuget.org/packages/Microsoft.AspNet.WebApi.Versioning.ApiExplorer)
6054
[![NuGet Downloads](https://img.shields.io/nuget/dt/Microsoft.AspNet.WebApi.Versioning.ApiExplorer.svg?color=green)](https://www.nuget.org/packages/Microsoft.AspNet.WebApi.Versioning.ApiExplorer)
6155
[![Quick Start](https://img.shields.io/badge/quick-start-9B6CD1)](../../wiki/API-Documentation#aspnet-web-api)
6256
[![Examples](https://img.shields.io/badge/example-code-2B91AF)](../../tree/master/samples/webapi/SwaggerWebApiSample)
6357

6458
* **ASP.NET Web API with OData API Explorer**
65-
<div class="bullet">Adds an API explorer to your Web API applications using OData v4.0</div>
59+
<div>Adds an API explorer to your Web API applications using OData v4.0</div>
6660

6761
[![NuGet Package](https://img.shields.io/nuget/v/Microsoft.AspNet.OData.Versioning.ApiExplorer.svg)](https://www.nuget.org/packages/Microsoft.AspNet.OData.Versioning.ApiExplorer)
6862
[![NuGet Downloads](https://img.shields.io/nuget/dt/Microsoft.AspNet.OData.Versioning.ApiExplorer.svg?color=green)](https://www.nuget.org/packages/Microsoft.AspNet.OData.Versioning.ApiExplorer)
6963
[![Quick Start](https://img.shields.io/badge/quick-start-9B6CD1)](../../wiki/API-Documentation#aspnet-web-api-with-odata)
7064
[![Examples](https://img.shields.io/badge/example-code-2B91AF)](../../tree/master/samples/webapi/SwaggerODataWebApiSample)
7165

7266
* **ASP.NET Core Versioned API Explorer**
73-
<div class="bullet">Adds additional API explorer support to your ASP.NET Core applications</div>
67+
<div>Adds additional API explorer support to your ASP.NET Core applications</div>
7468

7569
[![NuGet Package](https://img.shields.io/nuget/v/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.svg)](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer)
7670
[![NuGet Downloads](https://img.shields.io/nuget/dt/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.svg?color=green)](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer)
7771
[![Quick Start](https://img.shields.io/badge/quick-start-9B6CD1)](../../wiki/API-Documentation#aspnet-core)
7872
[![Examples](https://img.shields.io/badge/example-code-2B91AF)](../../tree/master/samples/aspnetcore/SwaggerSample)
7973

8074
* **ASP.NET Core with OData API Explorer**
81-
<div class="bullet">Adds additional API explorer support to your ASP.NET Core applications using OData v4.0</div>
75+
<div>Adds additional API explorer support to your ASP.NET Core applications using OData v4.0</div>
8276

8377
[![NuGet Package](https://img.shields.io/nuget/v/Microsoft.AspNetCore.OData.Versioning.ApiExplorer.svg)](https://www.nuget.org/packages/Microsoft.AspNetCore.OData.Versioning.ApiExplorer)
8478
[![NuGet Downloads](https://img.shields.io/nuget/dt/Microsoft.AspNetCore.OData.Versioning.ApiExplorer.svg?color=green)](https://www.nuget.org/packages/Microsoft.AspNetCore.OData.Versioning.ApiExplorer)

0 commit comments

Comments
 (0)