MARKDOWN

At Aboutpvp, we embrace Markdown as the primary format for our content. This guide is crafted to provide a deeper understanding of Aboutpvp's distinctive implementation of Markdown.

Our specialized variant of Markdown is employed throughout Aboutpvp to present text-based content, including guides, forum topics, and comments. This format is meticulously designed to optimize the way information is presented. Within this guide, you'll find illustrative examples that demonstrate the Markdown syntax in both its raw form, as written in the editor, and its visually rendered representation on the screen.

This comprehensive cheat-sheet serves as a condensed reference for the exclusive Markdown syntax utilized at Aboutpvp. Whether you're a newcomer to Markdown or an experienced user, this guide is tailored to swiftly acquaint you with the fundamental elements and empower you to leverage Markdown's full potential. Uncover the unique syntax employed at Aboutpvp and unlock a myriad of possibilities for creating well-structured guides.

Every markdown syntax can be used inside guides, topics and profile description but in comments you can only use syntax marked as * IN COMMENTS

1 COMMON

WRITTEN RENDERED
*italic* OR _italic_
* IN COMMENTS

italic OR italic

**bold** OR __bold__
* IN COMMENTS

bold OR bold

***bold-italic*** OR ___bold-italic___
* IN COMMENTS

bold-italic OR bold-italic

~~Strikethrough~~
* IN COMMENTS

Strikethrough

`code`
* IN COMMENTS

code

# Heading 1
## Heading 2

Heading 1

Heading 2

> Blockquote Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce interdum sapien sed malesuada efficitur.

Blockquote Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce interdum sapien sed malesuada efficitur.

| header1 | header2 | header3 | header4 |
|--------|:-------|-------:|:------:|
| content1 | content2 | content3 | content4 |
header1 header2 header3 header4
content1 content2 content3 content4
* List 1
* List 2
 * List 2A

OR

- List 1
- List 2
 - List 2A
  • List 1
  • List 2
    • List 2A

OR

  • List 1
  • List 2
    • List 2A
1. List 1
2. List 2
3. List 3
  1. List 1
  2. List 2
  3. List 3
Hello 1

---

Hello 2

***

Hello 3

___

Hello 1


Hello 2


Hello 3


https://www.aboutpvp.com
* IN COMMENTS

https://www.aboutpvp.com

[Aboutpvp link](https://www.aboutpvp.com)
* IN COMMENTS

Aboutpvp link

[Aboutpvp link with title](https://www.aboutpvp.com "Hello!")
* IN COMMENTS

Aboutpvp link with title

[Aboutpvp link by reference][1]

[1]: https://www.aboutpvp.com

* IN COMMENTS

Aboutpvp link by reference

![Normal Image](https://i.imgur.com/awCZ4Mb.jpeg)
* IN COMMENTS

Normal Image

2 ABOUTPVP SPECIFIC

WRITTEN RENDERED
@1[ezreal]
* IN COMMENTS

@1[ezreal](16)
* IN COMMENTS

{F56565}(Text Red)

Text Red

{F56565^25^}(Text Red with Size)

Text Red with Size

^25^(Sized text)

Sized text

!!Spoiler Lorem ipsum dolor sit amet, consectetur adipiscing elit.!!
* IN COMMENTS

Spoiler Lorem ipsum dolor sit amet, consectetur adipiscing elit.

===
HELLO WORLD!

HELLO WORLD

===
HELLO WORLD!
---
HELLO MARS!

HELLO WORLD!

HELLO MARS!

===
HELLO WORLD
---
HELLO MARS!
---
HELLO MOON!

HELLO WORLD!

HELLO MARS!

HELLO MOON!

![Resized Image](https://i.imgur.com/awCZ4Mb.jpeg)(100x100)
* IN COMMENTS

Resized Image

^(https://www.youtube.com/watch?v=C0DPdy98e4c)
* IN COMMENTS

Hello 1

---{F56565}

Hello 2

***{F56565}

Hello 3

___{F56565}

Hello 1


Hello 2


Hello 3


3 ESCAPE SYNTAX

The process of escaping involves using a backslash "\" to indicate to the parser that special characters should not be interpreted as Markdown.

On certain occasions, individuals may discover that the parser has misunderstood their text in an unintended manner. In such cases, one can rectify the situation by employing escaping techniques.

4 WRITE A GOOD GUIDE

Let's showcase some tips and tricks for using Markdown, along with our custom tags, to design a visually stunning guide page

You can copy these little snippets and use on your guide.

Coming soon..