Markdown专题研究_Span系列 2/4: Images 篇

IMAGES



two kinds of images in Markdown

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 "Optional title")
    optional title attribute enclosed in double or single quotes.
    [syntax for links]: http://www.jianshu.com/p/03d269145ff7

  • 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"

As of this writing, Markdown has no syntax for specifying the dimensions of an image; if this is important to you, you can simply use regular HTML< img > See here

Markdown大概是不支持路径中带有空格的图片,应该是的,即使用引号括起来也是不可以的。所以以后在命名文件夹的时候就不要使用空格了。

大部分的Markdown Parser(例如所用的Parser)仅支持很少的图片格式,如PNG,jpg,gif,对于SVG是不支持的,不过由于它保留了HTML的图片标记,所以我们还是可以使用标签来实现所有可以支持的图片格式,不过由于HTML本身并不能提供PDF图形的支持,所以PDF还是需要转换为其他格式的如SVG等。
同样的,Markdown 保留了 HTML 的注释方式

你可能感兴趣的:(Markdown专题研究_Span系列 2/4: Images 篇)