InterviewSolution
| 1. |
Escape Characters |
|
Answer» We can use a backslash(\) to escape literal characters. Before escaping they will look like, * Asterisk\ Backslash ` Backtick {} Curly braces . Dot ! Exclamation mark # Hash symbol - Hyphen symbol () Parentheses + Plus symbol [] Square brackets _ Underscore Output: This is the output that will be shown, if we just type the special characters directly, without using their escape sequences, we get the below output: After escaping by using the \ symbol as: \* Asterisk\\ Backslash \` Backtick \{} Curly braces \. Dot \! Exclamation mark \# Hash symbol \- Hyphen symbol \() Parentheses \+ Plus symbol \[] Square brackets \_ Underscore Output: This is the output that will be shown if we type the special characters along with their escape sequences. Conclusion:From the above cheat sheet, we can observe that using markdown we can format even a simple text document into rich, highly engaging content. Markdown is used in a lot of domains including ed-tech and education fields to create highly engaging and high-quality content for the consumers at a fast pace. With its rich list of available features, it can be used innovatively in a wide variety of ways and purposes. Additional Useful Resources:
|
|