Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 212 Bytes

markdown-refs.md

File metadata and controls

20 lines (14 loc) · 212 Bytes

markdown refs

using refs

refs way ( useful to avoid many url interleaved in the descriptive text )

[text1][1]
[text2][2]

[1]: URL1
[2]: URL2

without refs

[text1](URL1)
[text2](URL2)