About Markdown Syntax
Markdown is a language that allows you to style text with simple notation. It is often used in blog posts, documentation, and GitHub repository README files. Below are examples of typical syntax.Headings
Headings are written with lines starting with#
. The more #
there are, the lower the level of the heading.
Emphasis
Emphasis is written by enclosing text with*
or _
.
Lists
Lists are written with lines starting with-
or 1.
. -
represents unordered lists, and 1.
represents ordered lists.
Links
Links are written as[link text](URL)
.
Images
Images are written as
.
Code
Code is written by enclosing it with ```.Github Flavored Markdown
Morph supports GitHub Flavored Markdown (GFM). GFM is an extended specification of Markdown provided by GitHub, adding features such as tables, task lists, and syntax highlighting for code blocks.Tables
Tables are written with lines separated by|
.
Task Lists
Task lists are written with- [ ]
or - [x]
.