Skip to content

Commit ce10e20

Browse files
committed
Add "txt" highlighting to Markdown blocks.
This ensures it's styled with a differently-coloured background.
1 parent a2cab93 commit ce10e20

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/content/tutorials/connect-to-mysql.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This tutorial will teach you how to connect to MySQL from .NET Core using C#.
1818
First, install the [MySqlConnector NuGet package](https://www.nuget.org/packages/MySqlConnector/). From
1919
a command prompt, run:
2020

21-
```
21+
```txt
2222
dotnet add package MySqlConnector
2323
```
2424

docs/content/tutorials/dapper.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ You will need to install the following NuGet packages:
3232

3333
Build your connection string by substituting the appropriate values in this template:
3434

35-
```
35+
```txt
3636
Server=YOURSERVER; User ID=YOURUSERID; Password=YOURPASSWORD; Database=YOURDATABASE
3737
```
3838

docs/content/tutorials/efcore.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ It uses MySqlConnector to provide the core database connectivity.
2222
In this tutorial, we'll use a console application to demonstrate the core concepts.
2323
Create a console application, then add the Pomelo.EntityFrameworkCore.MySql NuGet package:
2424

25-
```
25+
```txt
2626
dotnet new console -o EFCoreMySQL
2727
cd EFCoreMySQL
2828
dotnet add package Pomelo.EntityFrameworkCore.MySql
@@ -32,7 +32,7 @@ dotnet add package Pomelo.EntityFrameworkCore.MySql
3232

3333
Build your connection string by substituting the appropriate values in this template:
3434

35-
```
35+
```txt
3636
Server=YOURSERVER; User ID=YOURUSERID; Password=YOURPASSWORD; Database=YOURDATABASE
3737
```
3838

0 commit comments

Comments
 (0)