tarathippumi-web commented on PR #26169:
URL: https://github.com/apache/pulsar/pull/26169#issuecomment-5027891328

   # Basic writing and formatting syntax
   
   Create sophisticated formatting for your prose and code on GitHub with 
simple syntax.
   
   ## Headings
   
   To create a heading, add one to six <kbd>#</kbd> symbols before your heading 
text. The number of <kbd>#</kbd> you use will determine the hierarchy level and 
typeface size of the heading.
   
   ```markdown
   # A first-level heading
   ## A second-level heading
   ### A third-level heading
   ```
   
   ![Screenshot of rendered GitHub Markdown showing sample h1, h2, and h3 
headers, which descend in type size and visual weight to show hierarchy 
level.](/assets/images/help/writing/headings-rendered.png)
   
   When you use two or more headings, GitHub automatically generates a table of 
contents that you can access by clicking the "Outline" menu icon <svg 
version="1.1" width="16" height="16" viewBox="0 0 16 16" class="octicon 
octicon-list-unordered" aria-label="Table of Contents" role="img"><path 
d="M5.75 2.5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5Zm0 5h8.5a.75.75 0 0 
1 0 1.5h-8.5a.75.75 0 0 1 0-1.5Zm0 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 
0-1.5ZM2 14a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm1-6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM2 4a1 
1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></svg> within the file header. Each heading 
title is listed in the table of contents and you can click a title to navigate 
to the selected section.
   
   ![Screenshot of a README file with the drop-down menu for the table of 
contents exposed. The table of contents icon is outlined in dark 
orange.](/assets/images/help/repository/headings-toc.png)
   
   ## Styling text
   
   You can indicate emphasis with bold, italic, strikethrough, subscript, or 
superscript text in comment fields and `.md` files.
   
   | Style                  | Syntax              | Keyboard shortcut           
                                                          | Example             
                     | Output                                 |                 
                                  |
   | ---------------------- | ------------------- | 
-------------------------------------------------------------------------------------
 | ---------------------------------------- | 
-------------------------------------- | 
------------------------------------------------- |
   | Bold                   | `** **` or `__ __`  | 
<kbd>Command</kbd>+<kbd>B</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>B</kbd> 
(Windows/Linux) | `**This is bold text**`                  | **This is bold 
text**                  |                                                   |
   | Italic                 | `* *` or `_ _`      | 
<kbd>Command</kbd>+<kbd>I</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>I</kbd> 
(Windows/Linux) | `_This text is italicized_`              | *This text is 
italicized*              |                                                   |
   | Strikethrough          | `~~ ~~` or `~ ~`    | None                        
                                                          | `~~This was 
mistaken text~~`             | ~~This was mistaken text~~             |         
                                          |
   | Bold and nested italic | `** **` and `_ _`   | None                        
                                                          | `**This text is 
_extremely_ important**` | **This text is *extremely* important** |             
                                      |
   | All bold and italic    | `*** ***`           | None                        
                                                          | `***All this text 
is important***`       | ***All this text is important***       | <!-- 
markdownlint-disable-line emphasis-style --> |
   | Subscript              | `<sub> </sub>`      | None                        
                                                          | `This is a 
<sub>subscript</sub> text`    | This is a <sub>subscript</sub> text    |        
                                           |
   | Superscript            | `<sup> </sup>`      | None                        
                                                          | `This is a 
<sup>superscript</sup> text`  | This is a <sup>superscript</sup> text  |        
                                           |
   | Underline              | `<ins> </ins>`      | None                        
                                                          | `This is an 
<ins>underlined</ins> text`  | This is an <ins>underlined</ins> text  |         
                                          |
   
   ## Quoting text
   
   You can quote text with a <kbd>></kbd>.
   
   ```markdown
   Text that is not a quote
   
   > Text that is a quote
   ```
   
   Quoted text is indented with a vertical line on the left and displayed using 
gray type.
   
   ![Screenshot of rendered GitHub Markdown showing the difference between 
normal and quoted text.](/assets/images/help/writing/quoted-text-rendered.png)
   
   > \[!NOTE]
   > When viewing a conversation, you can automatically quote text in a comment 
by highlighting the text, then typing <kbd>R</kbd>. You can quote an entire 
comment by clicking <svg version="1.1" width="16" height="16" viewBox="0 0 16 
16" class="octicon octicon-kebab-horizontal" aria-label="The horizontal kebab 
icon" role="img"><path d="M8 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM1.5 9a1.5 
1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm13 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 
3Z"></path></svg>, then **Quote reply**. For more information about keyboard 
shortcuts, see [Keyboard 
shortcuts](/en/get-started/accessibility/keyboard-shortcuts).
   
   ## Quoting code
   
   You can call out code or a command within a sentence with single backticks. 
The text within the backticks will not be formatted. You can also press the 
<kbd>Command</kbd>+<kbd>E</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>E</kbd> 
(Windows/Linux) keyboard shortcut to insert the backticks for a code block 
within a line of Markdown.
   
   ```markdown
   Use `git status` to list all new or modified files that haven't yet been 
committed.
   ```
   
   ![Screenshot of rendered GitHub Markdown showing that characters surrounded 
by backticks are shown in a fixed-width typeface, highlighted in light 
gray.](/assets/images/help/writing/inline-code-rendered.png)
   
   To format code or text into its own distinct block, use triple backticks.
   
   ````markdown
   Some basic Git commands are:
   ```
   git status
   git add
   git commit
   ```
   ````
   
   ![Screenshot of rendered GitHub Markdown showing a simple code block without 
syntax highlighting.](/assets/images/help/writing/code-block-rendered.png)
   
   For more information, see [Creating and highlighting code 
blocks](/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks).
   
   If you are frequently editing code snippets and tables, you may benefit from 
enabling a fixed-width font in all comment fields on GitHub. For more 
information, see [About writing and formatting on 
GitHub](/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/about-writing-and-formatting-on-github#enabling-fixed-width-fonts-in-the-editor).
   
   ## Supported color models
   
   In issues, pull requests, and discussions, you can call out colors within a 
sentence by using backticks. A supported color model within backticks will 
display a visualization of the color.
   
   ```markdown
   The background color is `#ffffff` for light mode and `#000000` for dark mode.
   ```
   
   ![Screenshot of rendered GitHub Markdown showing how HEX values within 
backticks create small circles of color, here white and then 
black.](/assets/images/help/writing/supported-color-models-rendered.png)
   
   Here are the currently supported color models.
   
   | Color | Syntax                      | Example                             
| Output                                                                        
                                                                                
                 |
   | ----- | --------------------------- | ----------------------------------- 
| 
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 |
   | HEX   | <code>\`#RRGGBB\`</code>    | <code>\`#0969DA\`</code>            
| ![Screenshot of rendered GitHub Markdown showing how HEX value #0969DA 
appears with a blue 
circle.](/assets/images/help/writing/supported-color-models-hex-rendered.png)   
    |
   | RGB   | <code>\`rgb(R,G,B)\`</code> | <code>\`rgb(9, 105, 218)\`</code>   
| ![Screenshot of rendered GitHub Markdown showing how RGB value 9, 105, 218 
appears with a blue 
circle.](/assets/images/help/writing/supported-color-models-rgb-rendered.png)   
|
   | HSL   | <code>\`hsl(H,S,L)\`</code> | <code>\`hsl(212, 92%, 45%)\`</code> 
| ![Screenshot of rendered GitHub Markdown showing how HSL value 212, 92%, 45% 
appears with a blue 
circle.](/assets/images/help/writing/supported-color-models-hsl-rendered.png) |
   
   > \[!NOTE]
   >
   > * A supported color model cannot have any leading or trailing spaces 
within the backticks.
   > * The visualization of the color is only supported in issues, pull 
requests, and discussions.
   
   ## Links
   
   You can create an inline link by wrapping link text in brackets `[ ]`, and 
then wrapping the URL in parentheses `( )`. You can also use the keyboard 
shortcut <kbd>Command</kbd>+<kbd>K</kbd> to create a link. When you have text 
selected, you can paste a URL from your clipboard to automatically create a 
link from the selection.
   
   You can also create a Markdown hyperlink by highlighting the text and using 
the keyboard shortcut <kbd>Command</kbd>+<kbd>V</kbd>. If you'd like to replace 
the text with the link, use the keyboard shortcut 
<kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>V</kbd>.
   
   `This site was built using [GitHub Pages](https://pages.github.com/).`
   
   ![Screenshot of rendered GitHub Markdown showing how text within brackets, 
"GitHub Pages," appears as a blue 
hyperlink.](/assets/images/help/writing/link-rendered.png)
   
   > \[!NOTE]
   > GitHub automatically creates links when valid URLs are written in a 
comment. For more information, see [Autolinked references and 
URLs](/en/get-started/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls).
   
   ## Section links
   
   You can link directly to any section that has a heading. To view the 
automatically generated anchor in a rendered file, hover over the section 
heading to expose the <svg version="1.1" width="16" height="16" viewBox="0 0 16 
16" class="octicon octicon-link" aria-label="the link" role="img"><path 
d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 
.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 
0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 
1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 
0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 
3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 
1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 
0 0 2.83Z"></path></svg> icon and click the icon to display the anchor in your 
browser.
   
   ![Screenshot of a README for a repository. To the left of a section heading, 
a link icon is outlined in dark 
orange.](/assets/images/help/repository/readme-links.png)
   
   If you need to determine the anchor for a heading in a file you are editing, 
you can use the following basic rules:
   
   * Letters are converted to lower-case.
   * Spaces are replaced by hyphens (`-`). Any other whitespace or punctuation 
characters are removed.
   * Leading and trailing whitespace are removed.
   * Markup formatting is removed, leaving only the contents (for example, 
`_italics_` becomes `italics`).
   * If the automatically generated anchor for a heading is identical to an 
earlier anchor in the same document, a unique identifier is generated by 
appending a hyphen and an auto-incrementing integer.
   
   For more detailed information on the requirements of URI fragments, see [RFC 
3986: Uniform Resource Identifier (URI): Generic Syntax, Section 
3.5](https://www.rfc-editor.org/rfc/rfc3986#section-3.5).
   
   The code block below demonstrates the basic rules used to generate anchors 
from headings in rendered content.
   
   ```markdown
   # Example headings
   
   ## Sample Section
   
   ## This'll be a _Helpful_ Section About the Greek Letter Θ!
   A heading containing characters not allowed in fragments, UTF-8 characters, 
two consecutive spaces between the first and second words, and formatting.
   
   ## This heading is not unique in the file
   
   TEXT 1
   
   ## This heading is not unique in the file
   
   TEXT 2
   
   # Links to the example headings above
   
   Link to the sample section: [Link Text](#sample-section).
   
   Link to the helpful section: [Link 
Text](#thisll-be-a-helpful-section-about-the-greek-letter-Θ).
   
   Link to the first non-unique section: [Link 
Text](#this-heading-is-not-unique-in-the-file).
   
   Link to the second non-unique section: [Link 
Text](#this-heading-is-not-unique-in-the-file-1).
   ```
   
   > \[!NOTE]
   > If you edit a heading, or if you change the order of headings with 
"identical" anchors, you will also need to update any links to those headings 
as the anchors will change.
   
   ## Relative links
   
   You can define relative links and image paths in your rendered files to help 
readers navigate to other files in your repository.
   
   A relative link is a link that is relative to the current file. For example, 
if you have a README file in root of your repository, and you have another file 
in *docs/CONTRIBUTING.md*, the relative link to *CONTRIBUTING.md* in your 
README might look like this:
   
   ```text
   [Contribution guidelines for this project](docs/CONTRIBUTING.md)
   ```
   
   GitHub will automatically transform your relative link or image path based 
on whatever branch you're currently on, so that the link or path always works. 
The path of the link will be relative to the current file. Links starting with 
`/` will be relative to the repository root. You can use all relative link 
operands, such as `./` and `../`.
   
   Your link text should be on a single line. The example below will not work.
   
   ```markdown
   [Contribution
   guidelines for this project](docs/CONTRIBUTING.md)
   ```
   
   Relative links are easier for users who clone your repository. Absolute 
links may not work in clones of your repository - we recommend using relative 
links to refer to other files within your repository.
   
   ## Custom anchors
   
   You can use standard HTML anchor tags (`<a name="unique-anchor-name"></a>`) 
to create navigation anchor points for any location in the document. To avoid 
ambiguous references, use a unique naming scheme for anchor tags, such as 
adding a prefix to the `name` attribute value.
   
   > \[!NOTE]
   > Custom anchors will not be included in the document outline/Table of 
Contents.
   
   You can link to a custom anchor using the value of the `name` attribute you 
gave the anchor. The syntax is exactly the same as when you link to an anchor 
that is automatically generated for a heading.
   
   For example:
   
   ```markdown
   # Section Heading
   
   Some body text of this section.
   
   <a name="my-custom-anchor-point"></a>
   Some text I want to provide a direct link to, but which doesn't have its own 
heading.
   
   (… more content…)
   
   [A link to that custom anchor](#my-custom-anchor-point)
   ```
   
   > \[!TIP]
   > Custom anchors are not considered by the automatic naming and numbering 
behavior of automatic heading links.
   
   ## Line breaks
   
   If you're writing in issues, pull requests, or discussions in a repository, 
GitHub will render a line break automatically:
   
   ```markdown
   This example
   Will span two lines
   ```
   
   However, if you are writing in an .md file, the example above would render 
on one line without a line break. To create a line break in an .md file, you 
will need to include one of the following:
   
   * Include two spaces at the end of the first line.
     <pre>
     This example&nbsp;&nbsp;
     Will span two lines
     </pre>
   
   * Include a backslash at the end of the first line.
   
     ```markdown
     This example\
     Will span two lines
     ```
   
   * Include an HTML single line break tag at the end of the first line.
   
     ```markdown
     This example<br/>
     Will span two lines
     ```
   
   If you leave a blank line between two lines, both .md files and Markdown in 
issues, pull requests, and discussions will render the two lines separated by 
the blank line:
   
   ```markdown
   This example
   
   Will have a blank line separating both lines
   ```
   
   ## Images
   
   You can display an image by adding <kbd>!</kbd> and wrapping the alt text in 
`[ ]`. Alt text is a short text equivalent of the information in the image. 
Then, wrap the link for the image in parentheses `()`.
   
   `![Screenshot of a comment on a GitHub issue showing an image, added in the 
Markdown, of an Octocat smiling and raising a 
tentacle.](https://myoctocat.com/assets/images/base-octocat.svg)`
   
   ![Screenshot of a comment on a GitHub issue showing an image, added in the 
Markdown, of an Octocat smiling and raising a 
tentacle.](/assets/images/help/writing/image-rendered.png)
   
   GitHub supports embedding images into your issues, pull requests, 
discussions, comments and `.md` files. You can display an image from your 
repository, add a link to an online image, or upload an image. For more 
information, see [Uploading assets](#uploading-assets).
   
   > \[!NOTE]
   > When you want to display an image that is in your repository, use relative 
links instead of absolute links.
   
   Here are some examples for using relative links to display an image.
   
   | Context                                                     | Relative 
Link                                                          |
   | ----------------------------------------------------------- | 
---------------------------------------------------------------------- |
   | In a `.md` file on the same branch                          | 
`/assets/images/electrocat.png`                                        |
   | In a `.md` file on another branch                           | 
`/../main/assets/images/electrocat.png`                                |
   | In issues, pull requests and comments of the repository     | 
`../blob/main/assets/images/electrocat.png?raw=true`                   |
   | In a `.md` file in another repository                       | 
`/../../../../github/docs/blob/main/assets/images/electrocat.png`      |
   | In issues, pull requests and comments of another repository | 
`../../../github/docs/blob/main/assets/images/electrocat.png?raw=true` |
   
   > \[!NOTE]
   > The last two relative links in the table above will work for images in a 
private repository only if the viewer has at least read access to the private 
repository that contains these images.
   
   For more information, see [Relative Links](#relative-links).
   
   ### The Picture element
   
   The `<picture>` HTML element is supported.
   
   ## Lists
   
   You can make an unordered list by preceding one or more lines of text with 
<kbd>-</kbd>, <kbd>\*</kbd>, or <kbd>+</kbd>.
   
   ```markdown
   - George Washington
   * John Adams
   + Thomas Jefferson
   ```
   
   ![Screenshot of rendered GitHub Markdown showing a bulleted list of the 
names of the first three American 
presidents.](/assets/images/help/writing/unordered-list-rendered.png)
   
   To order your list, precede each line with a number.
   
   ```markdown
   1. James Madison
   2. James Monroe
   3. John Quincy Adams
   ```
   
   ![Screenshot of rendered GitHub Markdown showing a numbered list of the 
names of the fourth, fifth, and sixth American 
presidents.](/assets/images/help/writing/ordered-list-rendered.png)
   
   ### Nested Lists
   
   You can create a nested list by indenting one or more list items below 
another item.
   
   To create a nested list using the web editor on GitHub or a text editor that 
uses a monospaced font, like [Visual Studio 
Code](https://code.visualstudio.com/), you can align your list visually. Type 
space characters in front of your nested list item until the list marker 
character (<kbd>-</kbd> or <kbd>\*</kbd>) lies directly below the first 
character of the text in the item above it.
   
   ```markdown
   1. First list item
      - First nested list item
        - Second nested list item
   ```
   
   > \[!NOTE]
   > In the web-based editor, you can indent or dedent one or more lines of 
text by first highlighting the desired lines and then using <kbd>Tab</kbd> or 
<kbd>Shift</kbd>+<kbd>Tab</kbd> respectively.
   
   ![Screenshot of Markdown in Visual Studio Code showing indentation of nested 
numbered lines and 
bullets.](/assets/images/help/writing/nested-list-alignment.png)
   
   ![Screenshot of rendered GitHub Markdown showing a numbered item followed by 
nested bullets at two different levels of 
nesting.](/assets/images/help/writing/nested-list-example-1.png)
   
   To create a nested list in the comment editor on GitHub, which doesn't use a 
monospaced font, you can look at the list item immediately above the nested 
list and count the number of characters that appear before the content of the 
item. Then type that number of space characters in front of the nested list 
item.
   
   In this example, you could add a nested list item under the list item `100. 
First list item` by indenting the nested list item a minimum of five spaces, 
since there are five characters (`100. `) before `First list item`.
   
   ```markdown
   100. First list item
        - First nested list item
   ```
   
   ![Screenshot of rendered GitHub Markdown showing a numbered item prefaced by 
the number 100 followed by a bulleted item nested one 
level.](/assets/images/help/writing/nested-list-example-3.png)
   
   You can create multiple levels of nested lists using the same method. For 
example, because the first nested list item has seven characters (`␣␣␣␣␣-␣`) 
before the nested list content `First nested list item`, you would need to 
indent the second nested list item by at least two more characters (nine spaces 
minimum).
   
   ```markdown
   100. First list item
        - First nested list item
          - Second nested list item
   ```
   
   ![Screenshot of rendered GitHub Markdown showing a numbered item prefaced by 
the number 100 followed by bullets at two different levels of 
nesting.](/assets/images/help/writing/nested-list-example-2.png)
   
   For more examples, see the [GitHub Flavored Markdown 
Spec](https://github.github.com/gfm/#example-265).
   
   ## Task lists
   
   To create a task list, preface list items with a hyphen and space followed 
by `[ ]`. To mark a task as complete, use `[x]`.
   
   ```markdown
   - [x] #739
   - [ ] https://github.com/octo-org/octo-repo/issues/740
   - [ ] Add delight to the experience when all tasks are complete :tada:
   ```
   
   ![Screenshot showing the rendered version of the markdown. The references to 
issues are rendered as issue 
titles.](/assets/images/help/writing/task-list-rendered-simple.png)
   
   If a task list item description begins with a parenthesis, you'll need to 
escape it with <kbd>\\</kbd>:
   
   `- [ ] \(Optional) Open a followup issue`
   
   For more information, see [About 
tasklists](/en/get-started/writing-on-github/working-with-advanced-formatting/about-tasklists).
   
   ## Mentioning people and teams
   
   You can mention a person or 
[team](/en/organizations/organizing-members-into-teams) on GitHub by typing 
<kbd>@</kbd> plus their username or team name. This will trigger a notification 
and bring their attention to the conversation. People will also receive a 
notification if you edit a comment to mention their username or team name. For 
more information about notifications, see [About 
notifications](/en/subscriptions-and-notifications/concepts/about-notifications).
   
   > \[!NOTE]
   > A person will only be notified about a mention if the person has read 
access to the repository and, if the repository is owned by an organization, 
the person is a member of the organization.
   
   `@github/support What do you think about these updates?`
   
   ![Screenshot of rendered GitHub Markdown showing how the team mention 
"@github/support" renders as bold, clickable 
text.](/assets/images/help/writing/mention-rendered.png)
   
   When you mention a parent team, members of its child teams also receive 
notifications, simplifying communication with multiple groups of people. For 
more information, see [About organization 
teams](/en/organizations/organizing-members-into-teams/about-teams).
   
   Typing an <kbd>@</kbd> symbol will bring up a list of people or teams on a 
project. The list filters as you type, so once you find the name of the person 
or team you are looking for, you can use the arrow keys to select it and press 
either tab or enter to complete the name. For teams, enter the 
@organization/team-name and all members of that team will get subscribed to the 
conversation.
   
   The autocomplete results are restricted to repository collaborators and any 
other participants on the thread.
   
   ## Referencing issues and pull requests
   
   You can bring up a list of suggested issues and pull requests within the 
repository by typing <kbd>#</kbd>. Type the issue or pull request number or 
title to filter the list, and then press either tab or enter to complete the 
highlighted result.
   
   For more information, see [Autolinked references and 
URLs](/en/get-started/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls).
   
   ## Referencing external resources
   
   If custom autolink references are configured for a repository, then 
references to external resources, like a JIRA issue or Zendesk ticket, convert 
into shortened links. To know which autolinks are available in your repository, 
contact someone with admin permissions to the repository. For more information, 
see [Configuring autolinks to reference external 
resources](/en/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/configuring-autolinks-to-reference-external-resources).
   
   ## Uploading assets
   
   You can upload assets like images by dragging and dropping, selecting from a 
file browser, or pasting. You can upload assets to issues, pull requests, 
comments, and `.md` files in your repository.
   
   ## Using emojis
   
   You can add emoji to your writing by typing `:EMOJICODE:`, a colon followed 
by the name of the emoji.
   
   `@octocat :+1: This PR looks great - it's ready to merge! :shipit:`
   
   ![Screenshot of rendered GitHub Markdown showing how emoji codes for +1 and 
shipit render visually as 
emoji.](/assets/images/help/writing/emoji-rendered.png)
   
   Typing <kbd>:</kbd> will bring up a list of suggested emoji. The list will 
filter as you type, so once you find the emoji you're looking for, press 
**Tab** or **Enter** to complete the highlighted result.
   
   For a full list of available emoji and codes, see [the 
Emoji-Cheat-Sheet](https://github.com/ikatyang/emoji-cheat-sheet/blob/github-actions-auto-update/README.md).
   
   ## Paragraphs
   
   You can create a new paragraph by leaving a blank line between lines of text.
   
   ## Footnotes
   
   You can add footnotes to your content by using this bracket syntax:
   
   ```text
   Here is a simple footnote[^1].
   
   A footnote can also have multiple lines[^2].
   
   [^1]: My reference.
   [^2]: To add line breaks within a footnote, add 2 spaces to the end of a 
line.  
   This is a second line.
   ```
   
   The footnote will render like this:
   
   ![Screenshot of rendered Markdown showing superscript numbers used to 
indicate footnotes, along with optional line breaks inside a 
note.](/assets/images/help/writing/footnote-rendered.png)
   
   > \[!NOTE]
   > The position of a footnote in your Markdown does not influence where the 
footnote will be rendered. You can write a footnote right after your reference 
to the footnote, and the footnote will still render at the bottom of the 
Markdown. Footnotes are not supported in wikis.
   
   ## Alerts
   
   **Alerts**, also sometimes known as **callouts** or **admonitions**, are a 
Markdown extension based on the blockquote syntax that you can use to emphasize 
critical information. On GitHub, they are displayed with distinctive colors and 
icons to indicate the significance of the content.
   
   Use alerts only when they are crucial for user success and limit them to one 
or two per article to prevent overloading the reader. Additionally, you should 
avoid placing alerts consecutively. Alerts cannot be nested within other 
elements.
   
   To add an alert, use a special blockquote line specifying the alert type, 
followed by the alert information in a standard blockquote. Five types of 
alerts are available:
   
   ```markdown
   > [!NOTE]
   > Useful information that users should know, even when skimming content.
   
   > [!TIP]
   > Helpful advice for doing things better or more easily.
   
   > [!IMPORTANT]
   > Key information users need to know to achieve their goal.
   
   > [!WARNING]
   > Urgent info that needs immediate user attention to avoid problems.
   
   > [!CAUTION]
   > Advises about risks or negative outcomes of certain actions.
   ```
   
   Here are the rendered alerts:
   
   ![Screenshot of rendered Markdown alerts showing how Note, Tip, Important, 
Warning, and Caution render with different colored text and 
icons.](/assets/images/help/writing/alerts-rendered.png)
   
   ## Hiding content with comments
   
   You can tell GitHub to hide content from the rendered Markdown by placing 
the content in an HTML comment.
   
   ```text
   <!-- This content will not appear in the rendered Markdown -->
   ```
   
   ## Ignoring Markdown formatting
   
   You can tell GitHub to ignore (or escape) Markdown formatting by using 
<kbd>\\</kbd> before the Markdown character.
   
   `Let's rename \*our-new-project\* to \*our-old-project\*.`
   
   ![Screenshot of rendered GitHub Markdown showing how backslashes prevent the 
conversion of asterisks to 
italics.](/assets/images/help/writing/escaped-character-rendered.png)
   
   For more information on backslashes, see Daring Fireball's [Markdown 
Syntax](https://daringfireball.net/projects/markdown/syntax#backslash).
   
   > \[!NOTE]
   > The Markdown formatting will not be ignored in the title of an issue or a 
pull request.
   
   ## Disabling Markdown rendering
   
   When viewing a Markdown file, you can click **Code** at the top of the file 
to disable Markdown rendering and view the file's source instead.
   
   ![Screenshot of a Markdown file in a repository showing options for 
interacting with the file. A button, labeled "Code", is outlined in dark 
orange.](/assets/images/help/writing/display-markdown-as-source-global-nav-update.png)
   
   Disabling Markdown rendering enables you to use source view features, such 
as line linking, which is not possible when viewing rendered Markdown files.
   
   ## Further reading
   
   * [GitHub Flavored Markdown Spec](https://github.github.com/gfm/)
   * [About writing and formatting on 
GitHub](/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/about-writing-and-formatting-on-github)
   * [Working with advanced 
formatting](/en/get-started/writing-on-github/working-with-advanced-formatting)
   * [Quickstart for writing on 
GitHub](/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/quickstart-for-writing-on-github)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to