Skip to content

Commit 203a18a

Browse files
Update overview.md
1 parent b4a709f commit 203a18a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs2/pages/getting-started/overview.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Make the impossible now possible. Evaluate C# expression in SQL to overcome limi
5757
- Consume Web Service
5858
- Replace text in template with String Interpolation
5959

60-
{% include template-example.html title='Dynamic Expression Example' %}
60+
### Dynamic Expression Example
6161
```csharp
6262
-- CREATE test
6363
DECLARE @table TABLE ( X INT, Y INT, Z INT )
@@ -82,7 +82,7 @@ Improve performance and capability for splitting text with an easy to use split
8282
- Include row index
8383

8484

85-
{% include template-example.html title='Split Text Example' %}
85+
### Split Text Example
8686
```csharp
8787
-- CREATE test
8888
DECLARE @t TABLE (Id INT , Input VARCHAR(MAX))
@@ -109,7 +109,7 @@ Use Regex flexibility to overcome "LIKE" and "PATHINDEX" limitations.
109109
- Replace
110110
- Split
111111

112-
{% include template-example.html title='Regular Expression Example' %}
112+
### Regular Expression Example
113113
```csharp
114114
DECLARE @customer TABLE ( Email VARCHAR(255) )
115115

@@ -135,7 +135,7 @@ Avoid enabling xp_cmdshell and compromising your SQL Server and use instead a mo
135135
- Improve readability
136136
- Improve security
137137

138-
{% include template-example.html title='Example' %}
138+
### Example
139139
```csharp
140140
-- REQUIRE EXTERNAL_ACCESS permission
141141
DECLARE @sqlnet SQLNET = SQLNET::New('

0 commit comments

Comments
 (0)