Published 2 years ago
Embedding Images In Markdown DocumentsThe syntax for adding an image to a Markdown document is fairly straightforward. This syntax is very similar to that of an anchor link with the only difference being thi...
Published 2 years ago
Highlighting Code Snippets In MarkdownFor technical articles containing code examples, it's important and helpful to present them in the most legible way possible. You can use the backtick (`) symbol to highlight inline code for example, . Inline code examples are the kind you find embedded within a sentence. ...
Published 2 years ago
Formatting Text In MarkdownThis article will discuss a few of Markdown's syntax for formatting text. To make a text bold we place double asterisks at the start and end of the text. For example: To italicize text you need to place single asterisks on both sides of the text...
Published 2 years ago
The Markdown Syntax For Creating LinksMarkdown provides a syntax for adding links to your documents. This way readers can navigate between pages. The syntax for creating a link is as follows: The above is equivalent to the following in HTML Unfortunately Markdown does not provide anyway t...
Published 2 years ago
How To Create A Table In MarkdownThere are two ways to create a table in Markdown: Some Markdown renderers do not support the Markdown table syntax. The syntax for creating a table involves the use of and to mark out what looks like an actual table which is then rendered as an HTML table. Here is an examp...
Published 2 years ago
A Guide To Creating Headings In MarkdownA heading in any document seeks to provide a brief explanation of what the subsequent text is about. Generally, there are about six types of headings, and each comes with a different font size. Markdown provides a syntax for all six heading types as seen in the examples bel...