A.G.
A.G.

Reputation: 21

How to change letters from lower case to upper case with markdown syntax?

How do I turn lower case letter to upper case by using Markdown syntax? For example, the user enters "test" in the editor and I want it to be converted to either "Test", or "tEst", for example Thank you

Upvotes: 2

Views: 10796

Answers (2)

Marcio Câmara
Marcio Câmara

Reputation: 1

you can try something like this:

## Patterns {style=text-transform:uppercase}

this will generate what you need

Upvotes: 0

L. Scott Johnson
L. Scott Johnson

Reputation: 4412

You cannot. Markdown doesn't provide a mechanism for case switching.

Complete syntax: https://daringfireball.net/projects/markdown/syntax

Upvotes: 2

Related Questions