Skip to content

Markdown

cotrInfo

Markdown Info

# Markdown Syntax Reference:
Markdown is a lightweight markup language for creating formatted text.
It uses simple syntax to format text, create lists, insert links, and more.
See the official Markdown guide for more details: https://www.markdownguide.org/

cotrComment

Markdown Comment (HTML)

<!-- ${1:Your comment here} -->

cotrOrderedList

Markdown Ordered List

${1:1}. ${2:List item}

cotrItalic

Markdown Italic

*${1:italic text}*

cotrList

Markdown Unordered List

- ${1:List item}

Markdown Link

[${1:link text}](${2:https://www.example.com})

cotrImage

Markdown Image

![${1:alt text}](${2:image.jpg})
// Note: Markdown does not have built-in options for adjusting image size or alignment.
// You can use HTML attributes within the image tag for more control:
// Example: <img src="image.jpg" alt="alt text" width="50%" align="right" />

cotrCodeBlock

Markdown Code Block

${1:Your code here}

cotrCommentMulti

Markdown Multi-Line Comment (HTML)

<!--
${1:Your comment here}
-->

cotrHeading

Markdown Heading

${1:#} ${2:Heading Text}

cotrBold

Markdown Bold

**${1:bold text}**

cotrBadges

Markdown Badges

<!-- For example:
![Ruby](https://img.shields.io/badge/Ruby-CC342D?style=for-the-badge&logo=Ruby&logoColor=white)
Icons can be found at: https://simpleicons.org/ -->
-->
[![${1:Badge Name}](${2:https://img.shields.io/badge/Label-Message-Color})](${3:https://www.example.com})