Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

How to use/write Markdowns

Code Block

# Hello, This is a simple paragraph in Markdown. You can *italicize* text, **bold** text, and you can create [hyperlinks](http://www.example.com). You can also create lists:
- Item 1
- Item 2
- Item 3


**Markdown Component takes a markdownContent input and renders it as HTML.**
Here is an example of how to use it:
**#Usage: <markdown [markdownContent]="yourMarkdownContent"></markdown>**
**Shows default Markdown Content for reference**

**#Usage: html<markdown showEditor="true"></markdown>**
**Markdown also supports nested lists:**

1. First item
    - Sub-item 1
    - Sub-item 2
2. Second item
3. Third item 

...