This page has moved. Please update your bookmark.

Document Portal

Emphasis


You can put emphasis on some part of your text inside a paragraph. There is two types of emphasis: normal emphasis and strong emphasis. One most websites, emphasis is shown as italic while strong emphasis is bold.

To give emphasis to some text with markdown, we use asterisks (*) or underscores (_). Surrounding some text with one asterisk or one underscore bar gives normal emphasis, while surrounding some text with two asterisks or two underscores results in strong emphasis:

Code:

*normal emphasis with asterisks*

_normal emphasis with underscore_

**strong emphasis with asterisks**

__strong emphasis with underscore__

This is some text *emphasized* with asterisks.

Results:

normal emphasis with asterisks

normal emphasis with underscore

strong emphasis with asterisks

strong emphasis with underscore

This is some text emphasized with asterisks.


Please note that there is absolutely no difference between using underscore and asterisks: both give exactly the same result. Choose the one you are the most comfortable with.


Back to: Markdown Concepts


Last modified: September 01, 2020 15:31:25 - Edit - Home - Index