Learning Markdown in 10 min

Introduction

Markdown is a language that widely used in many areas such as writing articles on websites, “README.md” in github, handouts produced by Jupiter notebook, and so on. You can easily write your first article by Markdown after learning it in 10 minutes. Please try to type the text with following styles by the hints.

e.g.1. The text between one star is the Italic

The answer of this example is

1
*The text between one star is Italic*

e.g.2. The text between u tags is the underline

The answer of this example is

1
<u>The text between u tags is the underline</u>

You can try it on the free online Markdown editor (e.g. https://markdown-editor.github.io/), that’s start it now.

Read More