Purpose:
on macos/linux:
brew install gkwa/homebrew-tools/braveside
on windows:
TBD
Example:
H<sub>2</sub>O
Renders as: H2O
Example:
X<sup>2</sup>
Renders as: X2
Examples:
`#0969DA`
`rgb(9, 105, 218)`
`hsl(212, 92%, 45%)`
These render as colored circles in GitHub issues, pull requests, and discussions.
Example:
[Link to Headers](#headers)
This creates a link to a section within the document.
Example:
#123
This automatically links to issue or pull request number 123 in the current repository.
Example (if configured):
TICKET-123
This could automatically link to a JIRA ticket or other external resource.
Example:
:smile: :heart: :thumbsup:
Renders as: 😄 ❤️ 👍
Example:
<!-- This content will not appear in the rendered Markdown -->
This text would be hidden in the rendered view.
This is a GitHub UI feature that allows viewing the raw Markdown source.
Example:
<picture>
<source media="(prefers-color-scheme: dark)" srcset="dark-image.png">
<source media="(prefers-color-scheme: light)" srcset="light-image.png">
<img alt="Text describing the image" src="default-image.png">
</picture>This allows different images to be displayed based on the user's theme setting.
Example:
Visit https://github.com for more information.
GitHub automatically converts this into a clickable link.