Skip to content

Instantly share code, notes, and snippets.

@addieljuarez
Created July 11, 2024 21:43
Show Gist options
  • Save addieljuarez/1379fc3cef671f24ca76d3a86134ff0c to your computer and use it in GitHub Desktop.
Save addieljuarez/1379fc3cef671f24ca76d3a86134ff0c to your computer and use it in GitHub Desktop.
basics markdown

Written with StackEdit.

Header 1

Header 1
=======

Header 2

Header 2
-----

Also header 1

# Also header 1

Also Header 2

## Also Header 2

Header 3

### Header 3

Header 4

#### Header 4

Header 5

##### Header 5

Header 6

###### Header 6

Paragraph Examples

># Paragraph Examples

This is my new paragraph example

This is my second paragraph

Text attributes example

Emphasis

Italic _Italic_ Italic *Italic*

Strong __Strong__ Strong **Strong**

_intra_word _intra_word intraword *intra*word

*intra*Word \*intra\*Word

Quotes

text in quotes

autor

Code Styles and blocks

code here code here with 4 spaces to init code into text

Code
In 
Block

List

  • item 1
  • Item 2
  • Item 3
    • Item 3 with 2 spaces
* item 1
+ Item 2
- Item 3 
  * Item 3 with 2 spaces

List 2

  1. Item 1
  2. Item 2
  3. Item 3 4. Item 4 with 4 spaces
1. Item 1
2. Item 2
3. Item 3
   4. Item 4 with 4 spaces

HORIZONTAL rules

Paragraph 1

Paragraph 2


Paragraph 3


Paragraph 1
---
Paragraph 2
___
Paragraph 3
***

Links example

Example to link Google.

A link distant like this

http://example.com

email@gmail.com

Example to link [Google](http://google.com "Google search").

A link distant like [this][msb]

<http://example.com>

<email@gmail.com>

[msb]:http://bing.com "Bing search engine"

Images

Inline image: DemoImage

Image referenced 300x300 demo

Inline image: 
![DemoImage](http://placehold.it/350x150)

Image referenced 
![300x300 demo][Demo300]


[Demo300]:http://placehold.it/300 "300-pixel squared placeholder"

HTML

text html inline
<dl>
	<dt>
		<p>
		<dd>text html inline</dd>
	</dt>
</dl>

Markdown flavors (github)

Tables

Col Head 1 Col Head 2 Col Head 3
R1, C1 R1, C2 R1, C3
R2, C1 R2, C2 R2, C3
R3, C1 R3, C2 R3, C3
|  Col Head 1  |  Col Head 2  |  Col Head 3  |
|  ---  |  ---  |  --- |
|  R1, C1  |  R1, C2  |  R1, C3  |
|  R2, C1  |  R2, C2  |  R2, C3  |
|  R3, C1  |  R3, C2  |  R3, C3  |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment