Reputation: 21
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
Reputation: 1
you can try something like this:
## Patterns {style=text-transform:uppercase}
this will generate what you need
Upvotes: 0
Reputation: 4412
You cannot. Markdown doesn't provide a mechanism for case switching.
Complete syntax: https://daringfireball.net/projects/markdown/syntax
Upvotes: 2