Vibrantnotes / Comments

0 stars 0 forks source link

p/brainstorm #3

Open utterances-bot opened 3 months ago

utterances-bot commented 3 months ago

Brainstorm - Vibrantnotes

Join VibrantNotes Brainstorm, where students collaborate, share ideas, and engage in group discussions. Enhance your learning journey today!

https://vibrantnotes.blogspot.com/p/brainstorm.html

Vibrantnotes commented 3 months ago

Enhance your Text or Thoughts with Markdown Stylings -

Headings

To create headings, you use # symbols followed by the heading text. The number of # symbols indicates the level of the heading, from 1 to 6.

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Styling text

You can style text with various formatting options:

**Bold text**
*Italic text*
~~Strikethrough text~~
<sub>Subscript text</sub>
<sup>Superscript text</sup>

Quoting text

Use > before the quoted text to create blockquotes:

> This is a quoted text.

Quoting code

For inline code, use single backticks. For code blocks, use triple backticks:

Inline code: code

Code block:

code

Supported color models

To display colors, enclose color values in backticks:

The background color is `#ffffff` for light mode and `#000000` for dark mode.

Links

Create inline links by wrapping link text in brackets [ ] and the URL in parentheses ( ):

This is a [link](https://example.com).

Section links

You can link directly to a section within a file by hovering over the section heading and copying the link.

Relative links

Define relative links to navigate within your repository:

[Contribution guidelines](docs/CONTRIBUTING.md)

Images

Display images with ![alt text](image URL) syntax:

![Alt text](https://example.com/image.jpg)

Lists

Create lists using -, *, or + for unordered lists, and numbers for ordered lists:

- Item 1
- Item 2
  - Subitem 1
  - Subitem 2
1. First item
2. Second item

Task lists

Create task lists with - [ ] for incomplete tasks and - [x] for completed tasks:

- [x] Task 1
- [ ] Task 2

Mentioning people and teams

Mention users and teams with @ followed by their username or team name:

@username
@team-name

Referencing issues and pull requests

Reference issues and pull requests using # followed by their number:

#123

Referencing external resources

Custom autolink references can be configured to link to external resources.

Uploading assets

Drag and drop, select from a file browser, or paste to upload assets like images.

Using emojis

Add emojis using :emoji_code::

:smile: :heart:

Paragraphs

Create paragraphs by leaving a blank line between lines of text.

Footnotes

Add footnotes with [text][footnote_id] syntax and define them elsewhere in your document.

Alerts

Use special blockquote syntax [!ALERT_TYPE] followed by the alert information to emphasize critical information.

Hiding content with comments

Place content within HTML comments <!-- content --> to hide it from rendering.

Ignoring Markdown formatting

Use \ before Markdown characters to ignore (or escape) Markdown formatting.

Disabling Markdown rendering

Click "Code" at the top of a Markdown file to disable rendering and view its source.

These elements allow you to structure and format your Markdown documents effectively, making them more readable and interactive.

Vibrantnotes commented 3 months ago

Read more MD Styling on Styling with MD.

Vibrantnotes commented 1 week ago

This is Qoute