Skip to content

Instantly share code, notes, and snippets.

@adriculous
Last active April 14, 2016 02:24
Show Gist options
  • Save adriculous/3f2a0efc1c13637c03de6c9556641c1b to your computer and use it in GitHub Desktop.
Save adriculous/3f2a0efc1c13637c03de6c9556641c1b to your computer and use it in GitHub Desktop.
Markdown for Writers and Hobbyists (Part 4) - Reference Images Markdown
/* Say we have two images to add in the example instead of just one. We can use anything as our ID to add in our content. Let's pretend there are two images. The code we will be using is this: ![alt text][ID] */
![Sakura Kinomoto & Syaoran Li][S&S]
![Tomoyo Daidouji & Eriol Hiiragizawa][T&E]
[S&S]: http://ninpojineous.adrimarie.us/wp-content/uploads/2016/04/sakura_syaoran_letsbuild.jpg
[T&E]: http://example.com/images/tomoyo_eriol.jpg
/* Same thing if we have the optional title attribute text on both those images */
![Sakura Kinomoto & Syaoran Li][S&S]
![Tomoyo Daidouji & Eriol Hiiragizawa][T&E]
[S&S]: http://ninpojineous.adrimarie.us/wp-content/uploads/2016/04/sakura_syaoran_letsbuild.jpg "Sakura & Syaoran"
[T&E]: http://example.com/images/tomoyo_eriol.jpg "Tomoyo & Eriol"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment