Jump to content

User:ChallengeSpacePedia/WikiTutorial/All/Bold and italics

From Wikipedia, the free encyclopedia

Bolding

[edit]

To bold text, input the following code

 '''Bold me!'''

which will output Bold me!

Italicizing

[edit]

To italicize text, input the following code

 ''Italicize me!''

which will output Italicize me!

Combining the tags

[edit]

To bold and italicize text, input the following code

 '''''Bird'''''

which will output Bird

Notes

[edit]
When bolding or italicizing ', you need to add <nowiki></nowiki> in the code. Note that <nowiki> will start a tag and </nowiki> will end it. The following source is used for such thing. Due to technical restrictions, you must replace <no> and </no> with <nowiki> and </nowiki> respectively.
'''<no>'</no>'''
or
''<no>'</no>''
If you put ''''Text'''', the text will be bolded, but not italicized. This outputs 'Text'.