> One line in blockquote
> How about two?
> How about more lines in blockquote
Markdown Output
Text Emphasis
Markdown Input
*This text is italicized*
**This text is bold**
~~This text is deleted~~
Markdown Output
Lists
Unordered Lists
Markdown Input
* Quezon City
* Makati City
* Taguig City
or
+ Quezon City
+ Makati City
+ Taguig City
or
- Quezon City
- Makati City
- Taguig City
Markdown Output
Ordered Lists
Markdown Input
1. Red
2. Green
3. Blue
Markdown Output
Links
Inline-style links
Markdown Input
Kindly check out this [example link](http://example.com/).
Markdown Output
Reference-style links
Markdown Input
Aside from [OSCP][1], most of the cybersecurity professionals are also recommending [OSWE][2] and [OSCE][3] certifications.
[1]: https://www.offensive-security.com/pwk-oscp/
[2]: https://www.offensive-security.com/awae-oswe/
[3]: https://www.offensive-security.com/ctp-osce/
Markdown Output
Code
One-line / In-line code
Markdown Input
The following payload `javascript:alert(document.domain)` executes an XSS alert on your website.
Markdown Output
Multi-line code
Markdown Input
An XML External Entity attack is a type of attack against an application that parses XML input and allows XML entities. XML entities can be used to tell the XML parser to fetch specific content on the server.
```
<?xml version="1.0"?>
<!DOCTYPE data [
<!ELEMENT data (#ANY)>
<!ENTITY file SYSTEM "file:///etc/passwd">
]>
<data>&file;</data>
```