Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Customizing Django Templates Building Custom Filters Custom Tags

Pachal Debbarma
PLUS
Pachal Debbarma
Courses Plus Student 3,597 Points

Question regarding the markdown2 markdown syntax.Can any body show me a demo how to add images using external link.

I went through the documentations and tried few ways but could not render an image from wen using external link.Can anybody help me?

Sandra Hogan
Sandra Hogan
8,657 Points

It would probably be helpful if you added examples of what you have tried so that someone can see where you might be going wrong.

1 Answer

Greg Kaleka
Greg Kaleka
39,021 Points

Hi Pachal,

It's a bit tricky, but you can actually use this part of markdown right here in the treehouse forum too! Here's how it works.

The syntax is ![alt text](image url), so:

![Cat picture](http://placekitten.com.s3.amazonaws.com/homepage-samples/408/287.jpg)

results in:

Cat picture

and:

![profile picture for Pachal Debbarma](https://uploads.teamtreehouse.com/production/profile-photos/7291342/thumb_14680956_1228301880567101_221245305043174220_o.jpg)

results in:

profile picture for Pachal Debbarma

Try it out in a comment below!

Cheers :beers:

-Greg

Pachal Debbarma
Pachal Debbarma
Courses Plus Student 3,597 Points

Thanks for the demonstration!Greg.It's really helpful cheers!!!!