textMarkdown

Vector Markdown and Text Stylization

Vector Messenger has integrated GitHub Flavored Markdown (GFM)arrow-up-right style, with unique customizations and additions. Markdown is a method of stylizing text inside the messenger. Examples are making text bold, italic, underlined, adding code blocks, and so forth. Markdown is a helpful tool for reading, legibility, and communicating thoughts in a more clear method. It can help the user more quickly identify the message, including adding title headers or bullet points. As simple paragraph or body text can make reading less interesting for some, markdown styling is used as a common tool to help convey ideas in a more optimal fashion. For reference, the GitBook you are reading now uses markdown styling.

Examples

Headers

# H1 Heading
## H2 Heading
### H3 Heading
#### H4 Heading
##### H5 Heading
###### H6 Heading

Text Stylization

**Bold Text** or __Bold Text__
*Italic Text* or _Italic Text_
~~Strikethrough Text~~
`Inline Code`

Lists

Unordered Lists
* Item 1
* Item 2
  * Sub-item 2.1
  * Sub-item 2.2

Code Blocks

For utilizing Code Blocks markdown formatting, start and end with 3 consecutive backticks or backquotes. On the first line after your last backtick, you can write the specified programming language and markdown will automatically detect the programming language to make it easier to read.

Vector Messenger Code Block Markdown (Screenshot)
In-App Display of Code Block Markdown

Custom Changes

Custom changes so far (and more need to be done / added to this list):

  • Disabled using + sign to create lists.

  • Disabled markdown images.

  • Integrated highlight.js for codeblock highlighting.

  • Added spoilers using || Discord-like syntax.

Last updated