-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMarkDown.txt
149 lines (101 loc) · 3.94 KB
/
MarkDown.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
===================
Guía MarkDown by dM
===================
Basado en: --> [https://github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet)
Markdown es un lenguaje de marcado ligero creado por John Gruber que trata de
conseguir la máxima legibilidad y facilidad de publicación tanto en su forma de
entrada como de salida, inspirándose en muchas convenciones existentes para
marcar mensajes de correo electrónico usando texto plano.
Muy usado en los textos descriptores de proyectos de software.
Usando las etiquetas, las podemos probar desde un editor online en --> http://dillinger.io/
La extensión usaul de estos archivos es .md, para poder probar los ejemplos se
debe usar esta extensión.
##### Headers #####
# H1
## H2
### H3
#### H4
##### H5
###### H6
Xxxxxx
===
Yyyy
---
##### Emphasis #####
Emphasis, aka italics, with *asterisks* or _underscores_.
Strong emphasis, aka bold, with **asterisks** or __underscores__.
Combined emphasis with **asterisks and _underscores_**.
Strikethrough uses two tildes. ~~Scratch this.~~
##### Lists #####
1. First ordered list item
2. Another item
* Unordered sub-list.
1. Actual numbers don't matter, just that it's a number
1. Ordered sub-list
4. And another item.
Some text that should be aligned with the above item.
* Unordered list can use asterisks
- Or minuses
+ Or pluses
##### Links #####
// Agregar enlaces al documento, se mostrara un enlace convencional.
[Texto del link](https://link.com)
##### Images #####
Reference-style:
![alt text][logo]
Here's our logo (hover to see the title text):
Inline-style:
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
##### Code and Syntax Highlighting #####
Inline `code` has `back-ticks around` it. Indicated the languaje code to colored the syntax
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```python
s = "Python syntax highlighting"
print s
print s
print s
```
##### Tables #####
Tables aren't part of the core Markdown spec, but they are part of GFM and Markdown Here supports them. They are an easy way of adding tables to your email -- a task that would otherwise require copy-pasting from another application.
Colons can be used to align columns.
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
##### Horizontal Rule #####
Three or more...
---
Hyphens
***
Asterisks
___
Underscores
## Captures
For show image and tooltip description in the README.md
![Capture1.png](Capture1.png "Capture1.png")
![Capture1.png](captures/plantilla.png "Capture1.png")
================
ReStructuredText
================
La extensión usaul de estos archivos es .rst, para poder probar ejemplos se debe
usar esta extensión.
El proyecto ReStructured Text es un lenguaje de marcas ligero creado para
escribir textos con formato definido de manera cómoda y rápida. Es parte del
proyecto Docutils dentro de la comunidad de Python, y es formalizado por el
grupo Python Doc-SIG (Documentation Special Interest Group). Tiene la principal
ventaja de que ese texto puede usarse para generar documentos equivalentes en
HTML, LaTeX, docbook, etc. Es una evolución de Structured Text.
A menudo, el término Restructured Text es abreviada a ReST o reST, causando
confusión con el término REST (Representational State Transfer), un tipo de
interfaz a través de protocolo HTTP que no tiene relación con el formato que nos
ocupa en este artículo.