This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Choose the best response for each question, then select Check your answers.
Which of the following Markdown snippets produces the text Hello, world! in bold italics?
*Hello, *world*!*
**Hello, *world*!**
***Hello, world!***
### Hello, world!
How do you print certain characters, like asterisks (*) and underscores (_), literally on your output?
*
_
Use three in a row, like *** or ___.
***
___
Escape them with a backslash, like \* or \_.
\*
\_
Unfortunately, this isn't supported at this time.
Suppose there's an HTML snippet that you want to include on your GitHub Pages web site, but Markdown doesn't offer a way to render it. What should you do?
Just add the HTML inline.
Cut the content. If it's not supported in Markdown, then it's probably not worth including.
Open an issue that requests Markdown support for your specialized scenario.
You must answer all questions before checking your work.
Was this page helpful?