Revision history for Markdown Syntax

UserDateBody
Princess CelestiaThis page is here to help you get a better grasp on the syntax of Markdown, the text processing engine this site uses. ## Inline formatting Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). Operator | Example | Result --- | --- | --- Bold | `This is **huge**` | This is **huge** Italic | `*very* clever, Connor... _very..._` | *very* clever, Connor... _very..._ Underline | `And I consider this __important__` | And I consider this __important__ Strikethrough | `I am ~~wrong~~ right` | I am ~~wrong~~ right Superscript | `normal text ^superscripted text^` | normal text ^superscripted text^ Subscript | `normal text %subscripted text%` | normal text %subscripted text% Spoiler | `Psst! ||Darth Vader is Luke's father||` | Psst! ||Darth Vader is Luke's father|| Code | ```Use `**bold**` to make text bold!``` | Use `**bold**` to make text bold! #### Multi-line inlines Most inline formatting can extend beyond just a single line and travel to other lines. However, it does have certain quirks, especially if you're unused to the Markdown syntax. ``` **I am a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"> <strong>I am a very<br />bold text</strong> </div> </div> </div> However, if you try to insert a newline in the middle of it, it won't work. ``` **I am not a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph">**I am not a very</div> <div class="paragraph">bold text**</div> </div> </div> If you really need an empty line in the middle of your inline-formatted text, you must *escape* the line ending. In order to do so, Markdown provides us with the `\` (backslash) character. Backslash is a very special character and is used for *escaping* other special characters. *Escaping* forces the character immediately after the backslash to be ignored by the parser. As such, we can write our previous example like so to preserve the empty line: ``` **I am a very \ bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><strong>I am a very<br> <br> bold text</strong></div> </div> </div> #### Combining inlines Most inline operators may be combined with each other (with the exception of the ````code```` syntax). ``` _I am an italic text **with some bold in it**._ ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><em>I am an italic text <strong>with some bold in it</strong>.</em></div> </div> </div> ## Block formatting Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. #### Blockquotes Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a > followed by a space. ``` > quote text ``` > quote text --- Please note, that if > is not followed by a space, it will not become a blockquote! ``` >not a quote ``` >not a quote --- Same goes for >>, even if followed by a space. ``` >> not a quote ``` >> not a quote --- You may continue a quote by adding > followed by a space on a new line, even if the line is otherwise empty. ``` > quote text > > continuation of quote ``` > quote text > > continuation of quote --- To nest a quote, simply repeat > followed by a space as many times as you wish to have nested blockquotes. ``` > quote text > > nested quote > > > even deeper nested quote ``` > quote text > > nested quote > > > even deeper nested quote #### Headers Markdown supports adding headers to your text. The syntax is # repeated up to 6 times. ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 #### Code block Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code. ~~~ ``` <div> <h1>Hello World!</h1> </div> ``` ~~~ ``` <div> <h1>Hello World!</h1> </div> ``` Code blocks may also use tildes (\~) instead of backticks (\`). ``` ~~~ code block ~~~ ``` ~~~ code block ~~~ ## Links Links have the basic syntax of ``` [Link Text](https://example.com) ``` [Link Text](https://example.com) Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols. As such... ``` https://example.com ``` https://example.com On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users. ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ## On-site images If you wish to link an on-site image, you should use the >>:id syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see. **You should always use this for on-site uploads!** (as this will let other users filter the image if they wish to, and it is against the rules to not show content with care) Here's a brief explanation of its usage. Operator | Description of result --- | --- \>\>123 | Simple link to image \>\>123s | Small (150x150) thumbnail of the image \>\>123t | Regular (320x240) thumbnail of the image \>\>123p | Preview (800x600) size of the image >>123 >>123s >>123t >>123p ## External images Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo). ``` ![](https://i.imgur.com/VCOTzOW.png) ``` ![](https://i.imgur.com/VCOTzOW.png) You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. The modifiers are case-sensitive! Modifier | Resulting size --- | --- tiny | 64x64 small | 128x128 medium | 256x256 large | 512x512 (anything else) | (actual size of the image) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) ``` ![tiny](https://i.imgur.com/VCOTzOW.png#plswork) ![small](https://i.imgur.com/VCOTzOW.png#plswork) ![medium](https://i.imgur.com/VCOTzOW.png#plswork) ![large](https://i.imgur.com/VCOTzOW.png#plswork) ![](https://i.imgur.com/VCOTzOW.png#plswork) #### Image links To make an image link, simply combine the external image syntax with the link syntax. ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ## Lists #### Unordered list Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list. ``` Shopping list: * Milk * Eggs * Soda ``` Shopping list: * Milk * Eggs * Soda You may use any of the following characters at the beginning of the line to make an unordered list: ``` * + - ``` Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list. ``` * Item one * Item two * Sublist item one * Sublist item two ``` * Item one * Item two * Sublist item one * Sublist item two #### Ordered list To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo. ``` 1. Item one 2. Item two 4. Item three ``` 1. Item one 2. Item two 4. Item three **Ordered lists cannot be sublists to other ordered lists.** They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists. ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ## Tables Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns. ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so: ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ # Escaping the syntax. Sometimes you may wish certain characters to not be interpreted as Markdown syntax. This is where the backslash comes in! Prefixing any markup with a backslash will cause the markup immediately following the backslash to not be parsed, for example: ``` \*\*grr grr, I should not be bold!\*\* ``` \*\*grr grr, I should not be bold\*\* Code blocks and code inlines will also escape the syntax to a limited extent (except for backticks themselves). ``` `**not bold!**` ``` `**not bold!**`
Princess CelestiaThis page is here to help you get a better grasp on the syntax of Markdown, the text processing engine this site uses. ## Inline formatting Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). Operator | Example | Result --- | --- | --- Bold | `This is **huge**` | This is **huge** Italic | `*very* clever, Connor... _very..._` | *very* clever, Connor... _very..._ Underline | `And I consider this __important__` | And I consider this __important__ Strikethrough | `I am ~~wrong~~ right` | I am ~~wrong~~ right Superscript | `normal text ^superscripted text^` | normal text ^superscripted text^ Subscript | `normal text %subscripted text%` | normal text %subscripted text% Spoiler | `Psst! ||Darth Vader is Luke's father||` | Psst! ||Darth Vader is Luke's father|| Code | ```Use `**bold**` to make text bold!``` | Use `**bold**` to make text bold! #### Multi-line inlines Most inline formatting can extend beyond just a single line and travel to other lines. However, it does have certain quirks, especially if you're unused to the Markdown syntax. ``` **I am a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"> <strong>I am a very<br />bold text</strong> </div> </div> </div> However, if you try to insert a newline in the middle of it, it won't work. ``` **I am not a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph">**I am not a very</div> <div class="paragraph">bold text**</div> </div> </div> If you really need an empty line in the middle of your inline-formatted text, you must *escape* the line ending. In order to do so, Markdown provides us with the `\` (backslash) character. Backslash is a very special character and is used for *escaping* other special characters. *Escaping* forces the character immediately after the backslash to be ignored by the parser. As such, we can write our previous example like so to preserve the empty line: ``` **I am a very \ bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><strong>I am a very<br> <br> bold text</strong></div> </div> </div> #### Combining inlines Most inline operators may be combined with each other (with the exception of the ````code```` syntax). ``` _I am an italic text **with some bold in it**._ ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><em>I am an italic text <strong>with some bold in it</strong>.</em></div> </div> </div> ## Block formatting Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. #### Blockquotes Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a > followed by a space. ``` > quote text ``` > quote text --- Please note, that if > is not followed by a space, it will not become a blockquote! ``` >not a quote ``` >not a quote --- Same goes for >>, even if followed by a space. ``` >> not a quote ``` >> not a quote --- You may continue a quote by adding > followed by a space on a new line, even if the line is otherwise empty. ``` > quote text > > continuation of quote ``` > quote text > > continuation of quote --- To nest a quote, simply repeat > followed by a space as many times as you wish to have nested blockquotes. ``` > quote text > > nested quote > > > even deeper nested quote ``` > quote text > > nested quote > > > even deeper nested quote #### Headers Markdown supports adding headers to your text. The syntax is # repeated up to 6 times. ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 #### Code block Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code. ~~~ ``` <div> <h1>Hello World!</h1> </div> ``` ~~~ ``` <div> <h1>Hello World!</h1> </div> ``` Code blocks may also use tildes (\~) instead of backticks (\`). ``` ~~~ code block ~~~ ``` ~~~ code block ~~~ ## Links Links have the basic syntax of ``` [Link Text](https://example.com) ``` [Link Text](https://example.com) Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols. As such... ``` https://example.com ``` https://example.com On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users. ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ## On-site images If you wish to link an on-site image, you should use the >>:id syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see. **You should always use this for on-site uploads!** (as this will let other users filter the image if they wish to, and it is against the rules to not show content with care) Here's a brief explanation of its usage. Operator | Description of result --- | --- \>\>123 | Simple link to image \>\>123s | Small (150x150) thumbnail of the image \>\>123t | Regular (320x240) thumbnail of the image \>\>123p | Preview (800x600) size of the image >>123 >>123s >>123t >>123p ## External images Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo). ``` ![](https://i.imgur.com/VCOTzOW.png) ``` ![](https://i.imgur.com/VCOTzOW.png) You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. The modifiers are case-sensitive! Modifier | Resulting size --- | --- tiny | 64x64 small | 128x128 medium | 256x256 large | 512x512 (anything else) | (actual size of the image) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) ![tiny](https://i.imgur.com/VCOTzOW.png#plswork) ![small](https://i.imgur.com/VCOTzOW.png#plswork) ![medium](https://i.imgur.com/VCOTzOW.png#plswork) ![large](https://i.imgur.com/VCOTzOW.png#plswork) ![](https://i.imgur.com/VCOTzOW.png#plswork) #### Image links To make an image link, simply combine the external image syntax with the link syntax. ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ## Lists #### Unordered list Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list. ``` Shopping list: * Milk * Eggs * Soda ``` Shopping list: * Milk * Eggs * Soda You may use any of the following characters at the beginning of the line to make an unordered list: ``` * + - ``` Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list. ``` * Item one * Item two * Sublist item one * Sublist item two ``` * Item one * Item two * Sublist item one * Sublist item two #### Ordered list To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo. ``` 1. Item one 2. Item two 4. Item three ``` 1. Item one 2. Item two 4. Item three **Ordered lists cannot be sublists to other ordered lists.** They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists. ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ## Tables Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns. ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so: ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ # Escaping the syntax. Sometimes you may wish certain characters to not be interpreted as Markdown syntax. This is where the backslash comes in! Prefixing any markup with a backslash will cause the markup immediately following the backslash to not be parsed, for example: ``` \*\*grr grr, I should not be bold!\*\* ``` \*\*grr grr, I should not be bold\*\* Code blocks and code inlines will also escape the syntax to a limited extent (except for backticks themselves). ``` `**not bold!**` ``` `**not bold!**`
Princess CelestiaThis page is here to help you get a better grasp on the syntax of Markdown, the text processing engine this site uses. ## Inline formatting Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). Operator | Example | Result --- | --- | --- Bold | `This is **huge**` | This is **huge** Italic | `*very* clever, Connor... _very..._` | *very* clever, Connor... _very..._ Underline | `And I consider this __important__` | And I consider this __important__ Strikethrough | `I am ~~wrong~~ right` | I am ~~wrong~~ right Superscript | `normal text ^superscripted text^` | normal text ^superscripted text^ Subscript | `normal text %subscripted text%` | normal text %subscripted text% Spoiler | `Psst! ||Darth Vader is Luke's father||` | Psst! ||Darth Vader is Luke's father|| Code | ```Use `**bold**` to make text bold!``` | Use `**bold**` to make text bold! #### Multi-line inlines Most inline formatting can extend beyond just a single line and travel to other lines. However, it does have certain quirks, especially if you're unused to the Markdown syntax. ``` **I am a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"> <strong>I am a very<br />bold text</strong> </div> </div> </div> However, if you try to insert a newline in the middle of it, it won't work. ``` **I am not a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph">**I am not a very</div> <div class="paragraph">bold text**</div> </div> </div> If you really need an empty line in the middle of your inline-formatted text, you must *escape* the line ending. In order to do so, Markdown provides us with the `\` (backslash) character. Backslash is a very special character and is used for *escaping* other special characters. *Escaping* forces the character immediately after the backslash to be ignored by the parser. As such, we can write our previous example like so to preserve the empty line: ``` **I am a very \ bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><strong>I am a very<br> <br> bold text</strong></div> </div> </div> #### Combining inlines Most inline operators may be combined with each other (with the exception of the ````code```` syntax). ``` _I am an italic text **with some bold in it**._ ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><em>I am an italic text <strong>with some bold in it</strong>.</em></div> </div> </div> ## Block formatting Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. #### Blockquotes Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a > followed by a space. ``` > quote text ``` > quote text --- Please note, that if > is not followed by a space, it will not become a blockquote! ``` >not a quote ``` >not a quote --- Same goes for >>, even if followed by a space. ``` >> not a quote ``` >> not a quote --- You may continue a quote by adding > followed by a space on a new line, even if the line is otherwise empty. ``` > quote text > > continuation of quote ``` > quote text > > continuation of quote --- To nest a quote, simply repeat > followed by a space as many times as you wish to have nested blockquotes. ``` > quote text > > nested quote > > > even deeper nested quote ``` > quote text > > nested quote > > > even deeper nested quote #### Headers Markdown supports adding headers to your text. The syntax is # repeated up to 6 times. ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 #### Code block Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code. ~~~ ``` <div> <h1>Hello World!</h1> </div> ``` ~~~ ``` <div> <h1>Hello World!</h1> </div> ``` Code blocks may also use tildes (\~) instead of backticks (\`). ``` ~~~ code block ~~~ ``` ~~~ code block ~~~ ## Links Links have the basic syntax of ``` [Link Text](https://example.com) ``` [Link Text](https://example.com) Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols. As such... ``` https://example.com ``` https://example.com On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users. ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ## On-site images If you wish to link an on-site image, you should use the >>:id syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see. **You should always use this for on-site uploads!** (as this will let other users filter the image if they wish to, and it is against the rules to not show content with care) Here's a brief explanation of its usage. Operator | Description of result --- | --- \>\>123 | Simple link to image \>\>123s | Small (64x64) thumbnail of the image \>\>123t | Regular (150x150) thumbnail of the image \>\>123p | Preview (500x500) size of the image \>\>123s | Small (150x150) thumbnail of the image \>\>123t | Regular (320x240) thumbnail of the image \>\>123p | Preview (800x600) size of the image >>123 >>123s >>123t >>123p ## External images Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo). ``` ![](https://i.imgur.com/VCOTzOW.png) ``` ![](https://i.imgur.com/VCOTzOW.png) You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. The modifiers are case-sensitive! Modifier | Resulting size --- | --- tiny | 64x64 small | 128x128 medium | 256x256 large | 512x512 (anything else) | (actual size of the image) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) #### Image links To make an image link, simply combine the external image syntax with the link syntax. ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ## Lists #### Unordered list Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list. ``` Shopping list: * Milk * Eggs * Soda ``` Shopping list: * Milk * Eggs * Soda You may use any of the following characters at the beginning of the line to make an unordered list: ``` * + - ``` Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list. ``` * Item one * Item two * Sublist item one * Sublist item two ``` * Item one * Item two * Sublist item one * Sublist item two #### Ordered list To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo. ``` 1. Item one 2. Item two 4. Item three ``` 1. Item one 2. Item two 4. Item three **Ordered lists cannot be sublists to other ordered lists.** They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists. ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ## Tables Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns. ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so: ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ # Escaping the syntax. Sometimes you may wish certain characters to not be interpreted as Markdown syntax. This is where the backslash comes in! Prefixing any markup with a backslash will cause the markup immediately following the backslash to not be parsed, for example: ``` \*\*grr grr, I should not be bold!\*\* ``` \*\*grr grr, I should not be bold\*\* Code blocks and code inlines will also escape the syntax to a limited extent (except for backticks themselves). ``` `**not bold!**` ``` `**not bold!**`
Princess CelestiaThis page is here to help you get a better grasp on the syntax of Markdown, the text processing engine this site uses. ## Inline formatting Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). Operator | Example | Result --- | --- | --- Bold | `This is **huge**` | This is **huge** Italic | `*very* clever, Connor... _very..._` | *very* clever, Connor... _very..._ Underline | `And I consider this __important__` | And I consider this __important__ Strikethrough | `I am ~~wrong~~ right` | I am ~~wrong~~ right Superscript | `normal text ^superscripted text^` | normal text ^superscripted text^ Subscript | `normal text %subscripted text%` | normal text %subscripted text% Spoiler | `Psst! ||Darth Vader is Luke's father||` | Psst! ||Darth Vader is Luke's father|| Code | ```Use `**bold**` to make text bold!``` | Use `**bold**` to make text bold! #### Multi-line inlines Most inline formatting can extend beyond just a single line and travel to other lines. However, it does have certain quirks, especially if you're unused to the Markdown syntax. ``` **I am a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"> <strong>I am a very<br />bold text</strong> </div> </div> </div> However, if you try to insert a newline in the middle of it, it won't work. ``` **I am not a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph">**I am not a very</div> <div class="paragraph">bold text**</div> </div> </div> If you really need an empty line in the middle of your inline-formatted text, you must *escape* the line ending. In order to do so, Markdown provides us with the `\` (backslash) character. Backslash is a very special character and is used for *escaping* other special characters. *Escaping* forces the character immediately after the backslash to be ignored by the parser. As such, we can write our previous example like so to preserve the empty line: ``` **I am a very \ bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><strong>I am a very<br> <br> bold text</strong></div> </div> </div> #### Combining inlines Most inline operators may be combined with each other (with the exception of the ````code```` syntax). ``` _I am an italic text **with some bold in it**._ ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><em>I am an italic text <strong>with some bold in it</strong>.</em></div> </div> </div> ## Block formatting Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. #### Blockquotes Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a > followed by a space. ``` > quote text ``` > quote text --- Please note, that if > is not followed by a space, it will not become a blockquote! ``` >not a quote ``` >not a quote --- Same goes for >>, even if followed by a space. ``` >> not a quote ``` >> not a quote --- You may continue a quote by adding > followed by a space on a new line, even if the line is otherwise empty. ``` > quote text > > continuation of quote ``` > quote text > > continuation of quote --- To nest a quote, simply repeat > followed by a space as many times as you wish to have nested blockquotes. ``` > quote text > > nested quote > > > even deeper nested quote ``` > quote text > > nested quote > > > even deeper nested quote #### Headers Markdown supports adding headers to your text. The syntax is # repeated up to 6 times. ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 #### Code block Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code. ~~~ ``` `​`` <div> <h1>Hello World!</h1> </div> `​`` ``` ~~~ ``` <div> <h1>Hello World!</h1> </div> ``` Code blocks may also use tildes (\~) instead of backticks (\`). ``` ~~~ code block ~~~ ``` ~~~ code block ~~~ ## Links Links have the basic syntax of ``` [Link Text](https://example.com) ``` [Link Text](https://example.com) Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols. As such... ``` https://example.com ``` https://example.com On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users. ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ## On-site images If you wish to link an on-site image, you should use the >>:id syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see. **You should always use this for on-site uploads!** (as this will let other users filter the image if they wish to, and it is against the rules to not show content with care) Here's a brief explanation of its usage. Operator | Description of result --- | --- \>\>123 | Simple link to image \>\>123s | Small (64x64) thumbnail of the image \>\>123t | Regular (150x150) thumbnail of the image \>\>123p | Preview (500x500) size of the image >>123 >>123s >>123t >>123p ## External images Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo). ``` ![](https://i.imgur.com/VCOTzOW.png) ``` ![](https://i.imgur.com/VCOTzOW.png) You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. The modifiers are case-sensitive! Modifier | Resulting size --- | --- tiny | 64x64 small | 128x128 medium | 256x256 large | 512x512 (anything else) | (actual size of the image) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) #### Image links To make an image link, simply combine the external image syntax with the link syntax. ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ## Lists #### Unordered list Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list. ``` Shopping list: * Milk * Eggs * Soda ``` Shopping list: * Milk * Eggs * Soda You may use any of the following characters at the beginning of the line to make an unordered list: ``` * + - ``` Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list. ``` * Item one * Item two * Sublist item one * Sublist item two ``` * Item one * Item two * Sublist item one * Sublist item two #### Ordered list To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo. ``` 1. Item one 2. Item two 4. Item three ``` 1. Item one 2. Item two 4. Item three **Ordered lists cannot be sublists to other ordered lists.** They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists. ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ## Tables Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns. ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so: ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ *formatting* | **works** | __here__ # Escaping the syntax. Sometimes you may wish certain characters to not be interpreted as Markdown syntax. This is where the backslash comes in! Prefixing any markup with a backslash will cause the markup immediately following the backslash to not be parsed, for example: ``` \*\*grr grr, I should not be bold!\*\* ``` \*\*grr grr, I should not be bold\*\* Code blocks and code inlines will also escape the syntax to a limited extent (except for backticks themselves). ``` `**not bold!**` ``` `**not bold!**`
Princess CelestiaThis page is here to help you get a better grasp on the syntax of Markdown, the text processing engine this site uses. ## Inline formatting Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). Operator | Example | Result --- | --- | --- Bold | `This is **huge**` | This is **huge** Italic | `*very* clever, Connor... _very..._` | *very* clever, Connor... _very..._ Underline | `And I consider this __important__` | And I consider this __important__ Strikethrough | `I am ~~wrong~~ right` | I am ~~wrong~~ right Superscript | `normal text ^superscripted text^` | normal text ^superscripted text^ Subscript | `normal text %subscripted text%` | normal text %subscripted text% Spoiler | `Psst! \|\|Darth Vader is Luke's father\|\|` | Psst! \|\|Darth Vader is Luke's father\|\| Spoiler | `Psst! ||Darth Vader is Luke's father||` | Psst! ||Darth Vader is Luke's father|| Code | ```Use `**bold**` to make text bold!``` | Use `**bold**` to make text bold! #### Multi-line inlines Most inline formatting can extend beyond just a single line and travel to other lines. However, it does have certain quirks, especially if you're unused to the Markdown syntax. ``` **I am a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"> <strong>I am a very<br />bold text</strong> </div> </div> </div> However, if you try to insert a newline in the middle of it, it won't work. ``` **I am not a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph">**I am not a very</div> <div class="paragraph">bold text**</div> </div> </div> If you really need an empty line in the middle of your inline-formatted text, you must *escape* the line ending. In order to do so, Markdown provides us with the `\` (backslash) character. Backslash is a very special character and is used for *escaping* other special characters. *Escaping* forces the character immediately after the backslash to be ignored by the parser. As such, we can write our previous example like so to preserve the empty line: ``` **I am a very \ bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><strong>I am a very<br> <br> bold text</strong></div> </div> </div> #### Combining inlines Most inline operators may be combined with each other (with the exception of the ````code```` syntax). ``` _I am an italic text **with some bold in it**._ ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><em>I am an italic text <strong>with some bold in it</strong>.</em></div> </div> </div> ## Block formatting Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. #### Blockquotes Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a > followed by a space. ``` > quote text ``` > quote text --- Please note, that if > is not followed by a space, it will not become a blockquote! ``` >not a quote ``` >not a quote --- Same goes for >>, even if followed by a space. ``` >> not a quote ``` >> not a quote --- You may continue a quote by adding > followed by a space on a new line, even if the line is otherwise empty. ``` > quote text > > continuation of quote ``` > quote text > > continuation of quote --- To nest a quote, simply repeat > followed by a space as many times as you wish to have nested blockquotes. ``` > quote text > > nested quote > > > even deeper nested quote ``` > quote text > > nested quote > > > even deeper nested quote #### Headers Markdown supports adding headers to your text. The syntax is # repeated up to 6 times. ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 #### Code block Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code. ``` `​`` <div> <h1>Hello World!</h1> </div> `​`` ``` ``` <div> <h1>Hello World!</h1> </div> ``` ## Links Links have the basic syntax of ``` [Link Text](https://example.com) ``` [Link Text](https://example.com) Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols. As such... ``` https://example.com ``` https://example.com On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users. ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ## On-site images If you wish to link an on-site image, you should use the >>:id syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see. **You should always use this for on-site uploads!** (as this will let other users filter the image if they wish to, and it is against the rules to not show content with care) Here's a brief explanation of its usage. Operator | Description of result --- | --- \>\>123 | Simple link to image \>\>123s | Small (64x64) thumbnail of the image \>\>123t | Regular (150x150) thumbnail of the image \>\>123p | Preview (500x500) size of the image ## External images Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo). ``` ![](https://i.imgur.com/VCOTzOW.png) ``` ![](https://i.imgur.com/VCOTzOW.png) You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. The modifiers are case-sensitive! Modifier | Resulting size --- | --- tiny | 64x64 small | 128x128 medium | 256x256 large | 512x512 (anything else) | (actual size of the image) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) #### Image links To make an image link, simply combine the external image syntax with the link syntax. ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ## Lists #### Unordered list Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list. ``` Shopping list: * Milk * Eggs * Soda ``` Shopping list: * Milk * Eggs * Soda You may use any of the following characters at the beginning of the line to make an unordered list: ``` * + - ``` Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list. ``` * Item one * Item two * Sublist item one * Sublist item two ``` * Item one * Item two * Sublist item one * Sublist item two #### Ordered list To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo. ``` 1. Item one 2. Item two 4. Item three ``` 1. Item one 2. Item two 4. Item three **Ordered lists cannot be sublists to other ordered lists.** They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists. ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ## Tables Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns. ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so: ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__
Princess CelestiaThis page is here to help you get a better grasp on the syntax of Markdown, the text processing engine this site uses. ``` aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa ``` ## Inline formatting Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). Operator | Example | Result --- | --- | --- Bold | `This is **huge**` | This is **huge** Italic | `*very* clever, Connor... _very..._` | *very* clever, Connor... _very..._ Underline | `And I consider this __important__` | And I consider this __important__ Strikethrough | `I am ~~wrong~~ right` | I am ~~wrong~~ right Superscript | `normal text ^superscripted text^` | normal text ^superscripted text^ Subscript | `normal text %subscripted text%` | normal text %subscripted text% Spoiler | `Psst! \|\|Darth Vader is Luke's father\|\|` | Psst! \|\|Darth Vader is Luke's father\|\| Code | ```Use `**bold**` to make text bold!``` | Use `**bold**` to make text bold! #### Multi-line inlines Most inline formatting can extend beyond just a single line and travel to other lines. However, it does have certain quirks, especially if you're unused to the Markdown syntax. ``` **I am a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"> <strong>I am a very<br />bold text</strong> </div> </div> </div> However, if you try to insert a newline in the middle of it, it won't work. ``` **I am not a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph">**I am not a very</div> <div class="paragraph">bold text**</div> </div> </div> If you really need an empty line in the middle of your inline-formatted text, you must *escape* the line ending. In order to do so, Markdown provides us with the `\` (backslash) character. Backslash is a very special character and is used for *escaping* other special characters. *Escaping* forces the character immediately after the backslash to be ignored by the parser. As such, we can write our previous example like so to preserve the empty line: ``` **I am a very \ bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><strong>I am a very<br> <br> bold text</strong></div> </div> </div> #### Combining inlines Most inline operators may be combined with each other (with the exception of the ````code```` syntax). ``` _I am an italic text **with some bold in it**._ ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><em>I am an italic text <strong>with some bold in it</strong>.</em></div> </div> </div> ## Block formatting Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. #### Blockquotes Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a > followed by a space. ``` > quote text ``` > quote text --- Please note, that if > is not followed by a space, it will not become a blockquote! ``` >not a quote ``` >not a quote --- Same goes for >>, even if followed by a space. ``` >> not a quote ``` >> not a quote --- You may continue a quote by adding > followed by a space on a new line, even if the line is otherwise empty. ``` > quote text > > continuation of quote ``` > quote text > > continuation of quote --- To nest a quote, simply repeat > followed by a space as many times as you wish to have nested blockquotes. ``` > quote text > > nested quote > > > even deeper nested quote ``` > quote text > > nested quote > > > even deeper nested quote #### Headers Markdown supports adding headers to your text. The syntax is # repeated up to 6 times. ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 #### Code block Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code. ``` `​`` <div> <h1>Hello World!</h1> </div> `​`` ``` ``` <div> <h1>Hello World!</h1> </div> ``` ## Links Links have the basic syntax of ``` [Link Text](https://example.com) ``` [Link Text](https://example.com) Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols. As such... ``` https://example.com ``` https://example.com On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users. ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ## On-site images If you wish to link an on-site image, you should use the >>:id syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see. **You should always use this for on-site uploads!** (as this will let other users filter the image if they wish to, and it is against the rules to not show content with care) Here's a brief explanation of its usage. Operator | Description of result --- | --- \>\>123 | Simple link to image \>\>123s | Small (64x64) thumbnail of the image \>\>123t | Regular (150x150) thumbnail of the image \>\>123p | Preview (500x500) size of the image ## External images Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo). ``` ![](https://i.imgur.com/VCOTzOW.png) ``` ![](https://i.imgur.com/VCOTzOW.png) You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. The modifiers are case-sensitive! Modifier | Resulting size --- | --- tiny | 64x64 small | 128x128 medium | 256x256 large | 512x512 (anything else) | (actual size of the image) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) #### Image links To make an image link, simply combine the external image syntax with the link syntax. ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ## Lists #### Unordered list Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list. ``` Shopping list: * Milk * Eggs * Soda ``` Shopping list: * Milk * Eggs * Soda You may use any of the following characters at the beginning of the line to make an unordered list: ``` * + - ``` Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list. ``` * Item one * Item two * Sublist item one * Sublist item two ``` * Item one * Item two * Sublist item one * Sublist item two #### Ordered list To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo. ``` 1. Item one 2. Item two 4. Item three ``` 1. Item one 2. Item two 4. Item three **Ordered lists cannot be sublists to other ordered lists.** They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists. ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ## Tables Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns. ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so: ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__
Princess CelestiaThis page is here to help you get a better grasp on the syntax of Markdown, the text processing engine this site uses. ``` aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa ``` ## Inline formatting Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). Operator | Example | Result --- | --- | --- Bold | `This is **huge**` | This is **huge** Italic | `*very* clever, Connor... _very..._` | *very* clever, Connor... _very..._ Underline | `And I consider this __important__` | And I consider this __important__ Strikethrough | `I am ~~wrong~~ right` | I am ~~wrong~~ right Superscript | `normal text ^superscripted text^` | normal text ^superscripted text^ Subscript | `normal text %subscripted text%` | normal text %subscripted text% Spoiler | `Psst! \|\|Darth Vader is Luke's father\|\|` | Psst! \|\|Darth Vader is Luke's father\|\| Code | ```Use `**bold**` to make text bold!``` | Use `**bold**` to make text bold! #### Multi-line inlines Most inline formatting can extend beyond just a single line and travel to other lines. However, it does have certain quirks, especially if you're unused to the Markdown syntax. ``` **I am a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"> <strong>I am a very<br />bold text</strong> </div> </div> </div> However, if you try to insert a newline in the middle of it, it won't work. ``` **I am not a very bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph">**I am not a very</div> <div class="paragraph">bold text**</div> </div> </div> If you really need an empty line in the middle of your inline-formatted text, you must *escape* the line ending. In order to do so, Markdown provides us with the `\` (backslash) character. Backslash is a very special character and is used for *escaping* other special characters. *Escaping* forces the character immediately after the backslash to be ignored by the parser. As such, we can write our previous example like so to preserve the empty line: ``` **I am a very \ bold text** ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><strong>I am a very<br> <br> bold text</strong></div> </div> </div> #### Combining inlines Most inline operators may be combined with each other (with the exception of the ````code```` syntax). ``` _I am an italic text **with some bold in it**._ ``` <div class="block"> <div class="block__header"> <span class="block__header__title">Result</span> </div> <div class="block__content"> <div class="paragraph"><em>I am an italic text <strong>with some bold in it</strong>.</em></div> </div> </div> ## Block formatting Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. #### Blockquotes Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a > followed by a space. ``` > quote text ``` > quote text --- Please note, that if > is not followed by a space, it will not become a blockquote! ``` >not a quote ``` >not a quote --- Same goes for >>, even if followed by a space. ``` >> not a quote ``` >> not a quote --- You may continue a quote by adding > followed by a space on a new line, even if the line is otherwise empty. ``` > quote text > > continuation of quote ``` > quote text > > continuation of quote --- To nest a quote, simply repeat > followed by a space as many times as you wish to have nested blockquotes. ``` > quote text > > nested quote > > > even deeper nested quote ``` > quote text > > nested quote > > > even deeper nested quote #### Headers Markdown supports adding headers to your text. The syntax is # repeated up to 6 times. ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 #### Code block Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code. ``` `​`` <div> <h1>Hello World!</h1> </div> `​`` ``` ``` <div> <h1>Hello World!</h1> </div> ``` ## Links Links have the basic syntax of ``` [Link Text](https://example.com) ``` [Link Text](https://example.com) Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols. As such... ``` https://example.com ``` https://example.com On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users. ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ## On-site images If you wish to link an on-site image, you should use the >>:id syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see. **You should always use this for on-site uploads!** (as this will let other users filter the image if they wish to, and it is against the rules to not show content with care) Here's a brief explanation of its usage. Operator | Description of result --- | --- \>\>123 | Simple link to image \>\>123s | Small (64x64) thumbnail of the image \>\>123t | Regular (150x150) thumbnail of the image \>\>123p | Preview (500x500) size of the image ## External images Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo). ``` ![](https://i.imgur.com/VCOTzOW.png) ``` ![](https://i.imgur.com/VCOTzOW.png) You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. The modifiers are case-sensitive! Modifier | Resulting size --- | --- tiny | 64x64 small | 128x128 medium | 256x256 large | 512x512 (anything else) | (actual size of the image) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) #### Image links To make an image link, simply combine the external image syntax with the link syntax. ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ## Lists #### Unordered list Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list. ``` Shopping list: * Milk * Eggs * Soda ``` Shopping list: * Milk * Eggs * Soda You may use any of the following characters at the beginning of the line to make an unordered list: ``` * + - ``` Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list. ``` * Item one * Item two * Sublist item one * Sublist item two ``` * Item one * Item two * Sublist item one * Sublist item two #### Ordered list To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo. ``` 1. Item one 2. Item two 4. Item three ``` 1. Item one 2. Item two 4. Item three **Ordered lists cannot be sublists to other ordered lists.** They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists. ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ## Tables Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns. ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so: ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__
Princess Celestia<h2>Inline formatting</h2> <p> Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). <table class="table"> <thead> <tr> <th>Operator</th> <th>Example</th> <th>Result</th> </tr> </thead> <tbody> <tr> <td>Bold</td> <td><pre><code>This is **huge**</code></pre></td> <td><p>This is <strong>huge</strong></p></td> </tr> <tr> <td>Italic</td> <td><pre><code>*They looked at you...*<br />_...and gave you a hug!_</code></pre></td> <td><p><em>They looked at you...</em><br /><em>...and gave you a hug!</em></p></td> </tr> <tr> <td>Underline</td> <td><pre><code>And this is __especially important__</code></pre></td> <td><p>And this is <u>especially important</u></p></td> </tr> <tr> <td>Strikethrough</td> <td><pre><code>I am ~~wrong~~ right</code></pre></td> <td><p>I am <del>wrong</del> right</p></td> </tr> <tr> <td>Superscript</td> <td><pre><code>normal text ^superscripted text^</code></pre></td> <td><p>normal text <sup>superscripted text</sup></p></td> </tr> <tr> <td>Subscript</td> <td><pre><code>normal text %subscripted text%</code></pre></td> <td><p>normal text <sub>subscripted text</sub></p></td> </tr> <tr> <td>Spoiler</td> <td><pre><code>Psst! ||Darth Vader is Luke's father||</code></pre></td> <td><p>Psst! <span class="spoiler">Darth Vader is Luke's father</span></p></td> </tr> <tr> <td>Code</td> <td><pre><code>You can use `**bold**` to make text bold</code></pre></td> <td><p>You can use <code>**bold**</code> to make text bold</p></td> </tr> </tbody> </table> </p> <h2>Block formatting</h2> <p> Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. <h4>Blockquotes</h4> <p>Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a &gt; followed by a space.</p> <pre><code>&gt; quote text</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <blockquote><p>quote text</p></blockquote> </div> </div> <hr> <p>Please note, that if &gt; is not followed by a space, it will not become a blockquote!</p> <pre><code>&gt;not a quote</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p>&gt;not a quote</p> </div> </div> <hr> <p>Same goes for &gt;&gt;, even if followed by a space.</p> <pre><code>&gt;&gt; not a quote</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p>&gt;&gt; not a quote</p> </div> </div> <hr> <p>You may continue a quote by adding &gt; followed by a space on a new line, even if the line is otherwise empty.</p> <pre><code>&gt; quote text<br />&gt; <br />&gt; continuation of quote</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <blockquote><p>quote text<br /><br />continuation of quote</p></blockquote> </div> </div> <hr> <p>To nest a quote, simply repeat &gt; followed by a space as many times as you wish to have nested blockquotes.</p> <pre><code>&gt; quote text<br />&gt; &gt; nested quote<br />&gt; &gt; &gt; even deeper nested quote</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <blockquote><p>quote text<blockquote><p>nested quote<blockquote><p>even deeper nested quote</p></blockquote></p></blockquote></p></blockquote> </div> </div> <h4>Headers</h4> <p>Markdown supports adding headers to your text. The syntax is # repeated up to 6 times.</p> <pre><code># Header 1<br />## Header 2<br />### Header 3<br />#### Header 4<br />##### Header 5<br />###### Header 6</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <h1>Header 1</h1> <h2>Header 2</h2> <h3>Header 3</h3> <h4>Header 4</h4> <h5>Header 5</h5> <h6>Header 6</h6> </div> </div> <h4>Code block</h4> <p>Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code.</p> <pre><code>```<br />&lt;div&gt;<br /> &lt;h1&gt;Hello World!&lt;/h1&gt;<br />&lt;/div&gt;<br />```</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <pre><code>&lt;div&gt;<br /> &lt;h1&gt;Hello World!&lt;/h1&gt;<br />&lt;/div&gt;</code></pre> </div> </div> </p> <h2>Links</h2> <p> Links have the basic syntax of <pre><code>[Link Text](https://example.com)</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p><a href="https://example.com">Link Text</a></p> </div> </div> </p> <p> Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols.<br /> As such... <pre><code>https://example.com</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p><a href="https://example.com">https://example.com</a></p> </div> </div> </p> <p>On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users.</p> <pre><code>[Link to the first image](https://derpibooru.org/images/0)<br />[Link to the first image](/images/0)</code></pre> This page is here to help you get a better grasp on the syntax of Markdown, the text processing engine this site uses. ## Inline formatting Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). Operator | Example | Result --- | --- | --- Bold | `This is **huge**` | This is **huge** Italic | `*very* clever, Connor... _very..._` | *very* clever, Connor... _very..._ Underline | `And I consider this __important__` | And I consider this __important__ Strikethrough | `I am ~~wrong~~ right` | I am ~~wrong~~ right Superscript | `normal text ^superscripted text^` | normal text ^superscripted text^ Subscript | `normal text %subscripted text%` | normal text %subscripted text% Spoiler | `Psst! \|\|Darth Vader is Luke's father\|\|` | Psst! \|\|Darth Vader is Luke's father\|\| Code | ```Use `**bold**` to make text bold!``` | Use `**bold**` to make text bold! #### Multi-line inlines Most inline formatting can extend beyond just a single line and travel to other lines. However, it does have certain quirks, especially if you're unused to the Markdown syntax. ``` **I am a very bold text** ``` <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p><a href="/images/0">Link to the first image</a><br /><a href="/images/0">Link to the first image</a></p> <div class="block__header"> <span class="block__header__title">Result</span> </div> </div> <h2>On-site images</h2> <p> If you wish to link an on-site image, you should use the <code>>>:id</code> syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see.<br /> <strong>You should always use this for on-site uploads!</strong> (or risk being banned)<br /> Here's a brief explanation of its usage. <table class="table"> <thead> <tr> <th>Operator</th> <th>Description of result</th> </tr> </thead> <tbody> <tr> <td>>>123</td> <td>Simple link to image</td> </tr> <tr> <td>>>123s</td> <td>Small (64x64) thumbnail of the image</td> </tr> <tr> <td>>>123t</td> <td>Regular (150x150) thumbnail of the image</td> </tr> <tr> <td>>>123p</td> <td>Preview (500x500) size of the image</td> </tr> </tbody> </table> </p> <h2>External images</h2> <p>Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo).</p> <pre><code>![](https://i.imgur.com/VCOTzOW.png)</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p><img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="" /></p> <div class="paragraph"> <strong>I am a very<br />bold text</strong> </div> </div> </div> <p>You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. <strong>The modifiers are case-sensitive!</strong></p> <table class="table"> <thead> <tr> <th>Modifier</th> <th>Resulting size</th> </tr> </thead> <tbody> <tr> <td>tiny</td> <td>64x64</td> </tr> <tr> <td>small</td> <td>128x128</td> </tr> <tr> <td>medium</td> <td>256x256</td> </tr> <tr> <td>large</td> <td>512x512</td> </tr> <tr> <td>(anything else)</td> <td>(full size of image)</td> </tr> </tbody> </table> <pre><code>![tiny](https://i.imgur.com/VCOTzOW.png)<br />![small](https://i.imgur.com/VCOTzOW.png)<br />![medium](https://i.imgur.com/VCOTzOW.png)<br />![large](https://i.imgur.com/VCOTzOW.png)<br />![](https://i.imgur.com/VCOTzOW.png)</code></pre> However, if you try to insert a newline in the middle of it, it won't work. ``` **I am not a very bold text** ``` <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="tiny" /><br /> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="small" /><br /> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="medium" /><br /> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="large" /><br /> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="" /><br /> </p> <div class="block__header"> <span class="block__header__title">Result</span> </div> </div> <h4>Image links</h4> <p>To make an image link, simply combine the external image syntax with the link syntax.</p> <pre><code>[![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab)</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <a href="https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab"><img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="" /></a> </p> <div class="paragraph">**I am not a very</div> <div class="paragraph">bold text**</div> </div> </div> <h2>Lists</h2> <h4>Unordered list</h4> <p>Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list.</p> <pre><code>Shopping list:<br />* Milk<br />* Eggs<br />* Soda</code></pre> If you really need an empty line in the middle of your inline-formatted text, you must *escape* the line ending. In order to do so, Markdown provides us with the `\` (backslash) character. Backslash is a very special character and is used for *escaping* other special characters. *Escaping* forces the character immediately after the backslash to be ignored by the parser. As such, we can write our previous example like so to preserve the empty line: ``` **I am a very \ bold text** ``` <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> Shopping list: <ul> <li>Milk</li> <li>Eggs</li> <li>Soda</li> </ul> </p> <div class="block__header"> <span class="block__header__title">Result</span> </div> </div> <p>You may use any of the following characters at the beginning of the line to make an unordered list:</p> <pre><code>*<br />+<br />-</code></pre> <p>Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list.</p> <pre><code>* Item one<br />* Item two<br /> * Sublist item one<br /> * Sublist item two</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <ul> <li>Item one</li> <li>Item two</li> <ul> <li>Sublist item one</li> <li>Sublist item two</li> </ul> </ul> </p> <div class="paragraph"><strong>I am a very<br> <br> bold text</strong></div> </div> </div> <h4>Ordered list</h4> <p>To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo.</p> <pre><code>1. Item one<br />2. Item two<br />4. Item three</code></pre> #### Combining inlines Most inline operators may be combined with each other (with the exception of the ````code```` syntax). ``` _I am an italic text **with some bold in it**._ ``` <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <ol> <li>Item one</li> <li>Item two</li> <li>Item three</li> </ol> </p> <div class="block__header"> <span class="block__header__title">Result</span> </div> </div> <p><strong>Ordered lists cannot be sublists to other ordered lists.</strong> They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists.</p> <pre><code>1) Item one<br />2) Item two<br /> * Sublist item one<br /> * Sublist item two</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <ol> <li>Item one</li> <li>Item two</li> <ul> <li>Sublist item one</li> <li>Sublist item two</li> </ul> </ol> </p> <div class="paragraph"><em>I am an italic text <strong>with some bold in it</strong>.</em></div> </div> </div> <h2>Tables</h2> <p>Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns.</p> <pre><code>| Left | Center | Right |<br />| ------------ |:--------------:| -------------:|<br />| left-aligned | center-aligned | right-aligned |<br />| *formatting* | **works** | __here__ |</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <div class="communication__body__text"> <table> <thead> <tr> <th>Left</th> <th align="center">Center</th> <th align="right">Right</th> </tr> </thead> <tbody> <tr> <td>left-aligned</td> <td align="center">center-aligned</td> <td align="right">right-aligned</td> </tr> <tr> <td><em>formatting</em></td> <td align="center"><strong>works</strong></td> <td align="right"><u>here</u></td> </tr> </tbody> </table> </div> </div> ## Block formatting Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. #### Blockquotes Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a > followed by a space. ``` > quote text ``` > quote text --- Please note, that if > is not followed by a space, it will not become a blockquote! ``` >not a quote ``` >not a quote --- Same goes for >>, even if followed by a space. ``` >> not a quote ``` >> not a quote --- You may continue a quote by adding > followed by a space on a new line, even if the line is otherwise empty. ``` > quote text > > continuation of quote ``` > quote text > > continuation of quote --- To nest a quote, simply repeat > followed by a space as many times as you wish to have nested blockquotes. ``` > quote text > > nested quote > > > even deeper nested quote ``` > quote text > > nested quote > > > even deeper nested quote #### Headers Markdown supports adding headers to your text. The syntax is # repeated up to 6 times. ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 ``` # Header 1 ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 #### Code block Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code. ``` `​`` <div> <h1>Hello World!</h1> </div> <p>In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so:</p> <pre><code>Left | Center | Right<br />--- |:---:| ---:<br />left-aligned | center-aligned | right-aligned<br />*formatting* | **works** | __here__</code></pre> `​`` ``` ``` <div> <h1>Hello World!</h1> </div> ``` ## Links Links have the basic syntax of ``` [Link Text](https://example.com) ``` [Link Text](https://example.com) Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols. As such... ``` https://example.com ``` https://example.com On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users. ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ``` [Link to the first image](https://derpibooru.org/images/0) [Link to the first image](/images/0) ## On-site images If you wish to link an on-site image, you should use the >>:id syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see. **You should always use this for on-site uploads!** (as this will let other users filter the image if they wish to, and it is against the rules to not show content with care) Here's a brief explanation of its usage. Operator | Description of result --- | --- \>\>123 | Simple link to image \>\>123s | Small (64x64) thumbnail of the image \>\>123t | Regular (150x150) thumbnail of the image \>\>123p | Preview (500x500) size of the image ## External images Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo). ``` ![](https://i.imgur.com/VCOTzOW.png) ``` ![](https://i.imgur.com/VCOTzOW.png) You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. The modifiers are case-sensitive! Modifier | Resulting size --- | --- tiny | 64x64 small | 128x128 medium | 256x256 large | 512x512 (anything else) | (actual size of the image) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) ``` ![tiny](https://i.imgur.com/VCOTzOW.png) ![small](https://i.imgur.com/VCOTzOW.png) ![medium](https://i.imgur.com/VCOTzOW.png) ![large](https://i.imgur.com/VCOTzOW.png) ![](https://i.imgur.com/VCOTzOW.png) #### Image links To make an image link, simply combine the external image syntax with the link syntax. ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ``` [![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab) ## Lists #### Unordered list Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list. ``` Shopping list: * Milk * Eggs * Soda ``` Shopping list: * Milk * Eggs * Soda You may use any of the following characters at the beginning of the line to make an unordered list: ``` * + - ``` Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list. ``` * Item one * Item two * Sublist item one * Sublist item two ``` * Item one * Item two * Sublist item one * Sublist item two #### Ordered list To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo. ``` 1. Item one 2. Item two 4. Item three ``` 1. Item one 2. Item two 4. Item three **Ordered lists cannot be sublists to other ordered lists.** They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists. ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ``` 1) Item one 2) Item two * Sublist item one * Sublist item two ## Tables Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns. ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | ``` | Left | Center | Right | | ------------ |:--------------:| -------------:| | left-aligned | center-aligned | right-aligned | | *formatting* | **works** | __here__ | In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so: ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__ ``` Left | Center | Right --- | :---: | ---: left-aligned | center-aligned | right-aligned *formatting* | **works** | __here__
Princess Celestia<h2>Inline formatting</h2> <p> Inline formatting is the most commonly seen type of text formatting in Markdown. It can be applied almost anywhere else and doesn't depend on specific context (most of the time). <table class="table"> <thead> <tr> <th>Operator</th> <th>Example</th> <th>Result</th> </tr> </thead> <tbody> <tr> <td>Bold</td> <td><pre><code>This is **huge**</code></pre></td> <td><p>This is <strong>huge</strong></p></td> </tr> <tr> <td>Italic</td> <td><pre><code>*They looked at you...*<br />_...and gave you a hug!_</code></pre></td> <td><p><em>They looked at you...</em><br /><em>...and gave you a hug!</em></p></td> </tr> <tr> <td>Underline</td> <td><pre><code>And this is __especially important__</code></pre></td> <td><p>And this is <u>especially important</u></p></td> </tr> <tr> <td>Strikethrough</td> <td><pre><code>I am ~~wrong~~ right</code></pre></td> <td><p>I am <del>wrong</del> right</p></td> </tr> <tr> <td>Superscript</td> <td><pre><code>normal text ^superscripted text^</code></pre></td> <td><p>normal text <sup>superscripted text</sup></p></td> </tr> <tr> <td>Subscript</td> <td><pre><code>normal text %subscripted text%</code></pre></td> <td><p>normal text <sub>subscripted text</sub></p></td> </tr> <tr> <td>Spoiler</td> <td><pre><code>Psst! ||Darth Vader is Luke's father||</code></pre></td> <td><p>Psst! <span class="spoiler">Darth Vader is Luke's father</span></p></td> </tr> <tr> <td>Code</td> <td><pre><code>You can use `**bold**` to make text bold</code></pre></td> <td><p>You can use <code>**bold**</code> to make text bold</p></td> </tr> </tbody> </table> </p> <h2>Block formatting</h2> <p> Block formatting is the kind of formatting that cannot be written within a single line and typically requires to be written on its own line. Many block formatting styles extend past just one line. <h4>Blockquotes</h4> <p>Philomena's flavor of Markdown makes some changes to the blockquote syntax compared to regular CommonMark. The basic syntax is a &gt; followed by a space.</p> <pre><code>&gt; quote text</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <blockquote><p>quote text</p></blockquote> </div> </div> <hr> <p>Please note, that if &gt; is not followed by a space, it will not become a blockquote!</p> <pre><code>&gt;not a quote</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p>&gt;not a quote</p> </div> </div> <hr> <p>Same goes for &gt;&gt;, even if followed by a space.</p> <pre><code>&gt;&gt; not a quote</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p>&gt;&gt; not a quote</p> </div> </div> <hr> <p>You may continue a quote by adding &gt; followed by a space on a new line, even if the line is otherwise empty.</p> <pre><code>&gt; quote text<br />&gt; <br />&gt; continuation of quote</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <blockquote><p>quote text<br /><br />continuation of quote</p></blockquote> </div> </div> <hr> <p>To nest a quote, simply repeat &gt; followed by a space as many times as you wish to have nested blockquotes.</p> <pre><code>&gt; quote text<br />&gt; &gt; nested quote<br />&gt; &gt; &gt; even deeper nested quote</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <blockquote><p>quote text<blockquote><p>nested quote<blockquote><p>even deeper nested quote</p></blockquote></p></blockquote></p></blockquote> </div> </div> <h4>Headers</h4> <p>Markdown supports adding headers to your text. The syntax is # repeated up to 6 times.</p> <pre><code># Header 1<br />## Header 2<br />### Header 3<br />#### Header 4<br />##### Header 5<br />###### Header 6</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <h1>Header 1</h1> <h2>Header 2</h2> <h3>Header 3</h3> <h4>Header 4</h4> <h5>Header 5</h5> <h6>Header 6</h6> </div> </div> <h4>Code block</h4> <p>Another way to write code is by writing a code block. Code blocks, unlike inline code syntax, are styled similar to blockquotes and are more appropriate for sharing larger snippets of code. In fact, this very page has been using this very structure to show examples of code.</p> <pre><code>```<br />&lt;div&gt;<br /> &lt;h1&gt;Hello World!&lt;/h1&gt;<br />&lt;/div&gt;<br />```</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <pre><code>&lt;div&gt;<br /> &lt;h1&gt;Hello World!&lt;/h1&gt;<br />&lt;/div&gt;</code></pre> </div> </div> </p> <h2>Links</h2> <p> Links have the basic syntax of <pre><code>[Link Text](https://example.com)</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p><a href="https://example.com">Link Text</a></p> </div> </div> </p> <p> Most links pasted as plaintext will be automatically converted into a proper clickable link, as long as they don't begin with dangerous protocols.<br /> As such... <pre><code>https://example.com</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p><a href="https://example.com">https://example.com</a></p> </div> </div> </p> <p>On-site links may be written as either a relative or absolute path. If the on-site link is written as the absolute path, it will be automatically converted into a relative link for the convenience of other users.</p> <pre><code>[Link to the first image](https://derpibooru.org/images/0)<br />[Link to the first image](/images/0)</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p><a href="/images/0">Link to the first image</a><br /><a href="/images/0">Link to the first image</a></p> </div> </div> <h2>On-site images</h2> <p> If you wish to link an on-site image, you should use the <code>>>:id</code> syntax. It respects filters currently in-use by the reader and spoilers content they do not wish to see.<br /> <strong>You should always use this for on-site uploads!</strong> (or risk being banned)<br /> Here's a brief explanation of its usage. <table class="table"> <thead> <tr> <th>Operator</th> <th>Description of result</th> </tr> </thead> <tbody> <tr> <td>>>123</td> <td>Simple link to image</td> </tr> <tr> <td>>>123s</td> <td>Small (64x64) thumbnail of the image</td> </tr> <tr> <td>>>123t</td> <td>Regular (150x150) thumbnail of the image</td> </tr> <tr> <td>>>123p</td> <td>Preview (500x500) size of the image</td> </tr> </tbody> </table> </p> <h2>External images</h2> <p>Some images you may wish to link may not exist on the site. To link them Markdown provides us with a special syntax. All images embedded this way are proxied by our image proxy (Go-Camo).</p> <pre><code>![](https://i.imgur.com/VCOTzOW.png)</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p><img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="" /></p> </div> </div> <p>You may control the size of your externally-linked image by specifying the alt text. Certain keywords are recognized as size modifiers. <strong>The modifiers are case-sensitive!</strong></p> <table class="table"> <thead> <tr> <th>Modifier</th> <th>Resulting size</th> </tr> </thead> <tbody> <tr> <td>tiny</td> <td>64x64</td> </tr> <tr> <td>small</td> <td>128x128</td> </tr> <tr> <td>medium</td> <td>256x256</td> </tr> <tr> <td>large</td> <td>512x512</td> </tr> <tr> <td>(anything else)</td> <td>(full size of image)</td> </tr> </tbody> </table> <pre><code>![tiny](https://i.imgur.com/VCOTzOW.png)<br />![small](https://i.imgur.com/VCOTzOW.png)<br />![medium](https://i.imgur.com/VCOTzOW.png)<br />![large](https://i.imgur.com/VCOTzOW.png)<br />![](https://i.imgur.com/VCOTzOW.png)</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="tiny" /><br /> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="small" /><br /> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="medium" /><br /> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="large" /><br /> <img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="" /><br /> </p> </div> </div> <h4>Image links</h4> <p>To make an image link, simply combine the external image syntax with the link syntax.</p> <pre><code>[![](https://i.imgur.com/VCOTzOW.png)](https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab)</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <a href="https://derpibooru.org/forums/art/topics/2021-derpibooru-community-collab"><img src="https://ext.derpicdn.net/titL6R9sWImKvTPVO9kBl-0nn5E/aHR0cHM6Ly9pLmltZ3VyLmNvbS9WQ09Uek9XLnBuZw" alt="" /></a> </p> </div> </div> <h2>Lists</h2> <h4>Unordered list</h4> <p>Unordered lists can be written fairly intuitively, by putting one of the special characters in front of each line that should be a part of the list.</p> <pre><code>Shopping list:<br />* Milk<br />* Eggs<br />* Soda</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> Shopping list: <ul> <li>Milk</li> <li>Eggs</li> <li>Soda</li> </ul> </p> </div> </div> <p>You may use any of the following characters at the beginning of the line to make an unordered list:</p> <pre><code>*<br />+<br />-</code></pre> <p>Lists may be nested and have sublists within them. Simply prefix your sublist items with three spaces while within another list.</p> <pre><code>* Item one<br />* Item two<br /> * Sublist item one<br /> * Sublist item two</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <ul> <li>Item one</li> <li>Item two</li> <ul> <li>Sublist item one</li> <li>Sublist item two</li> </ul> </ul> </p> </div> </div> <h4>Ordered list</h4> <p>To write an ordered list, simply put a number at the beginning of the line followed by a dot or closing bracket. It doesn't actually matter which order your numbers are written in, the list will always maintain its incremental order. Note the 4 in the example, it isn't a typo.</p> <pre><code>1. Item one<br />2. Item two<br />4. Item three</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <ol> <li>Item one</li> <li>Item two</li> <li>Item three</li> </ol> </p> </div> </div> <p><strong>Ordered lists cannot be sublists to other ordered lists.</strong> They can, however, be sublists to unordered lists. Unordered lists, in turn, may be sublists in ordered lists.</p> <pre><code>1) Item one<br />2) Item two<br /> * Sublist item one<br /> * Sublist item two</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <ol> <li>Item one</li> <li>Item two</li> <ul> <li>Sublist item one</li> <li>Sublist item two</li> </ul> </ol> </p> </div> </div> <h2>Tables</h2> <p>Philomena's Markdown implementation supports GitHub-style tables. This isn't a part of the core Markdown specification, but we support them. The colons are used to specify the alignment of columns.</p> <pre><code>| Left | Center | Right |<br />| ------------ |:--------------:| -------------:|<br />| left-aligned | center-aligned | right-aligned |<br />| *formatting* | **works** | __here__ |</code></pre> <div class="block"> <div class="block__header"><span class="block__header__title">Result</span></div> <div class="block__content"> <p> <div class="communication__body__text"> <table> <thead> <tr> <th>Left</th> <th align="center">Center</th> <th align="right">Right</th> </tr> </thead> <tbody> <tr> <td>left-aligned</td> <td align="center">center-aligned</td> <td align="right">right-aligned</td> </tr> <tr> <td><em>formatting</em></td> <td align="center"><strong>works</strong></td> <td align="right"><u>here</u></td> </tr> </tbody> </table> </p> </div> </div> </div> <p>In tables, the pipes (|) at the edges of the table are optional. To separate table head from body, you need to put in at least three - symbols. As such, example above could have also been written like so:</p> <pre><code>Left | Center | Right<br />--- |:---:| ---:<br />left-aligned | center-aligned | right-aligned<br />*formatting* | **works** | __here__</code></pre>