8000 GitHub - LuanderFarias/GFM: A list of github-flavored-markdown functions, components and templates
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

LuanderFarias/GFM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

2 Commits
ย 
ย 
ย 
ย 

Repository files navigation

GitHub Flavored Markdown

This document outlines the current list of componentsand uses of GMF (github-flavored-markdown). Periodically updated by PR'S and the current maintainer Examples and use-cases of these may be subjective.

Contributions are welcome. Edit this file and submit a pull request.


1. Headers

H1

H2

H3

H4

H5
H6

2. Text Formatting

Bold

Italic

Bold and Italic

Strikethrough

Blockquote

Nested Blockquote


3. Lists

Unordered List

  • Item 1
    • Subitem 1
      • Sub-subitem
  • Item 2
  • Item 3

Ordered List

  1. First item
  2. Second item
    1. Sub-item
  3. Third item

4. Task List

  • Completed task
  • Incomplete task
  • Another task with sub-tasks
    • Sub-task 1
    • Sub-task 2

5. Code

Inline code: console.log("Hello, world!")

Code Block

```javascript
function greet(name) {
  console.log(`Hello, ${name}`);
}
greet("GitHub");
```

6. Tables

Syntax Description
Header Title
Paragraph Text

Aligning columns:

Left Aligned Center Aligned Right Aligned
Left text Center text Right text

7. Links and Images

GitHub

Octocat


8. Mentions and References

@octocat
#1
GH-1
Link to issue


9. Emojis

๐Ÿ˜„ ๐Ÿš€ ๐Ÿ‘ ๐Ÿ”ฅ


10. HTML in Markdown

Click to expand

Hidden content here.


11. Footnotes

Here is a footnote reference1.


12. Escaping Characters

*Not italic*
# Not a header


13. Syntax Highlighting (language identifiers)

def hello():
    print("Hello from Python")
echo "Shell script example"
<div>Hello HTML</div>
{ "key": "value" }

14. Thematic Breaks





15. Autolinks

http://www.example.com

mailto:example@example.com


16. Raw HTML

This is red text.

17. Disallowed Raw HTML Tags

Certain HTML tags are filtered out for security reasons:

  • <title>
  • <textarea>
  • <style>
  • <xmp>
  • <iframe>
  • <noembed>
  • <noframes>
  • <script>
  • <plaintext>

These tags are replaced with &lt;tagname> when rendered.


18. Hard Line Breaks

First line
Second line

Or using a backslash:

First line
Second line


Rendered with GitHub Flavored Markdown (GFM)

Footnotes

  1. This is the footnote. โ†ฉ

About

A list of github-flavored-markdown functions, components and templates

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published
0