For the complete documentation index, see llms.txt. This page is also available as Markdown.

Markdown

Vector Markdown and Text Stylization

Vector Messenger has integrated GitHub Flavored Markdown (GFM) 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

Only ATX-style headings using # are supported.

Setext-style headings (underlining text with === or ---) are disabled.


Text Stylization

**Bold Text** or __Bold Text__
*Italic Text* or _Italic Text_
~~Strikethrough Text~~
<u>Underlined Text</u>
`Inline Code`
||Spoiler Text||

Tip: Tapping or clicking inline code will automatically copy it to your clipboard.


Lists

Unordered Lists

Ordered Lists

Only - and * are supported as list markers. The + marker is disabled.


Blockquotes

Every line of a blockquote must begin with >. Lines without it will not be included in the quote block.


To share a link without generating a preview, wrap the URL in angle brackets:


Tables

Tables are automatically wrapped in a scrollable container on smaller screens.


Horizontal Rule


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 it to make it easier to read. Every code block includes a copy button for convenience.


Collapsible Sections


Custom Changes

The following are Vector-specific customizations to standard GFM behavior:

  • Disabled using the + sign to create lists. Only - and * are supported.

  • Disabled markdown images. Images are handled as file attachments instead.

  • Disabled autolinks (bare URLs). Vector handles URL detection and linking separately.

  • Disabled setext-style headings (=== / ---). Only ATX # headings are supported.

  • Integrated highlight.js for code block syntax highlighting.

  • Added spoilers using ||spoiler text|| Discord-like syntax.

  • Code blocks include an injected copy button for convenience.

  • Inline code can be tapped or clicked to copy to clipboard.

  • Links wrapped in angle brackets [text](<url>) suppress link previews.

  • Tables are automatically wrapped in a scrollable container on smaller screens.

Last updated