doc.less3.design Open in urlscan Pro
76.76.21.123  Public Scan

Submitted URL: https://doc.less3.design/
Effective URL: https://doc.less3.design/essentials/markdown
Submission: On June 17 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

Less_3 Docs home page
Search...Ctrl K
 * less3.design
 * less3.design


Search
Navigation
Essentials
Markdown Syntax
Scene_CommentsForce_Graph
 * 
   Asset Store
 * 
   Github
 * 
   Discord

   ESSENTIALS
   
   Markdown Syntax
   Code Blocks
   Images and Embeds
   Global Settings
   Navigation
   Reusable Snippets

Essentials


MARKDOWN SYNTAX

Text, title, and styling in standard markdown



TITLES

Best used for section headers.

Copy

## Titles



SUBTITLES

Best use to subsection headers.

Copy

### Subtitles


Each title and subtitle creates an anchor and also shows up on the table of
contents on the right.


TEXT FORMATTING

We support most markdown formatting. Simply add **, _, or ~ around text to
format it.

StyleHow to write
itResultBold**bold**boldItalic_italic_italicStrikethrough~strikethrough~strikethrough

You can combine these. For example, write **_bold and italic_** to get bold and
italic text.

You need to use HTML to write superscript and subscript text. That is, add <sup>
or <sub> around your text.

Text SizeHow to write
itResultSuperscript<sup>superscript</sup>superscriptSubscript<sub>subscript</sub>subscript


LINKING TO PAGES

You can add a link by wrapping text in [](). You would write [link to
google](https://google.com) to link to google.

Links to pages in your docs need to be root-relative. Basically, you should
include the entire folder path. For example, [link to
text](/writing-content/text) links to the page “Text” in our components section.

Relative links like [link to text](../text) will open slower because we cannot
optimize them as easily.


BLOCKQUOTES


SINGLELINE

To create a blockquote, add a > in front of a paragraph.

> Dorothy followed her through many of the beautiful rooms in her castle.

Copy

> Dorothy followed her through many of the beautiful rooms in her castle.



MULTILINE

> Dorothy followed her through many of the beautiful rooms in her castle.
> 
> The Witch bade her clean the pots and kettles and sweep the floor and keep the
> fire fed with wood.

Copy

> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.



LATEX

Mintlify supports LaTeX through the Latex component.

8 x (vk x H1 - H2) = (0,1)
Copy

<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>


Code Blocks
xgithublinkedin
Powered by Mintlify
On this page
 * Titles
 * Subtitles
 * Text Formatting
 * Linking to Pages
 * Blockquotes
 * Singleline
 * Multiline
 * LaTeX