Text improvements - how to create a campsite #614
nothing wrong, @abhisekp. That's markdown syntax for images...
Admittedly, it's fairly difficult to devise a "natural" syntax for
placing images into a plain text document format.
Markdown uses an image syntax that is intended to resemble the syntax
for links, allowing for two styles: inline and reference.
Inline image syntax looks like this:
![Alt text](/path/to/img.jpg)
![Alt text](/path/to/img.jpg "Optional title")
That is:
- An exclamation mark:
!
; - followed by a set of square brackets, containing the
alt
attribute text for the image; - followed by a set of parentheses, containing the URL or path to
the image, and an optional
title
attribute enclosed in double or single quotes.
Reference-style image syntax looks like this:
![Alt text][id]
Where "id" is the name of a defined image reference. Image references
are defined using syntax identical to link references:
[id]: url/to/image "Optional title attribute"
Capisce!?
Unless you've meant the lowercase A, in which case please be more specific in the comments :p haha
@hallaathrad Please click the link. It's in Line 33. The syntax is partial. There is no image associated with it.
Error noticed. it seems to have been like that since the last two forevers. let me rewind that part. brb
General rephrasing to try to help campers understand the process a bit better: