Corrected code fencing

This commit is contained in:
Henrik Helgesen 2021-11-16 09:44:12 -08:00 committed by GitHub
parent c80095ea95
commit 7da313b7c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ Here you can find a rather interesting Cheat Sheet regarding markdown: [https://
The syntax to use codefences is with backticks. If you provide the language after the first block of backticks, github will automatically put that in decent syntax highlighting. So, A simple code fence with AL code, can simply be done by: The syntax to use codefences is with backticks. If you provide the language after the first block of backticks, github will automatically put that in decent syntax highlighting. So, A simple code fence with AL code, can simply be done by:
```` ````
```al ```AL
procedure ALGuidelinesRock() procedure ALGuidelinesRock()
var var
Customer: Record Customer; Customer: Record Customer;
@ -27,7 +27,7 @@ The syntax to use codefences is with backticks. If you provide the language aft
```` ````
Results in: Results in:
```al ```AL
procedure ALGuidelinesRock() procedure ALGuidelinesRock()
var var
Customer: Record Customer; Customer: Record Customer;