(see https://review.docs.microsoft.com/en-us/azure/azure-resource-manager/bicep/linter-rule-secure-secrets-in-params?branch=pr-en-us-206413#silencing-false-positives for example)
Repro:
```bicep
#disable-next-line secure-secrets-in-params // Doesn't contain a secret
param mypassword string
```
Currently rendered as:
#disable-next-line secure-secrets-in-params // Doesn't contain a secret
param mypassword string

Expected: Something like:

@mumian Do you know if MS docs should be picking up bicep colorization? Most seems to be okay, but it has the #disable-next-line issue and also handles strings incorrectly (but github does handle string correctly):
Docs:

Github:
@description('SAS Token for accessing script path')
(see https://review.docs.microsoft.com/en-us/azure/azure-resource-manager/bicep/linter-rule-secure-secrets-in-params?branch=pr-en-us-206413#silencing-false-positives for example)
Repro:
```bicep
#disable-next-line secure-secrets-in-params // Doesn't contain a secret
param mypassword string
```
Currently rendered as:

Expected: Something like:@mumian Do you know if MS docs should be picking up bicep colorization? Most seems to be okay, but it has the #disable-next-line issue and also handles strings incorrectly (but github does handle string correctly):

Docs:
Github: