Images in Markdown
In markdown, image is written like ![](src)
. The src
here can either be a url like https://octodex.github.com/images/yaktocat.png
, or an absolute/relative file path, like ../images/test.png
.
More Topics about Image:
How to insert images in Typora
Write the Markdown
You could simply write down the markdown syntax to insert the image. Or click "image" from menubar, or press the shortcut key. When you do this, and meanwhile, if there is an image url in clipboard, then the url will be inserted into the src
part directly.
Drag & Drop
Of course, there's a easier way — drag & drop, like the screencast below.
You could also drag & drop multiple image files at one time.
Select from local files
You could click menu item Edit
→ Image Tools
→ Insert Local Images…
from menu bar to open a dialog to select and insert local image(s).
If you use this menu item frequently, we would suggest you to re-assign the shortcut key for this "insert image" command following Custom Key Binding.
Paste images from clipboard
Since Markdown file is only plain text file, users could not insert image data into Markdown file directly, but can insert image reference to file/url.
Typora support paste image data from clipboard, after telling typora where to put those images. Typora would put image data into given folder or server, then insert images referring to that stored file or url. Please refer to section When insert local image… for more detail.
Tips: on macOS, users could copy image file from finder and then paste into typora. It has same behavior with drag and drop.
Tips: on macOS, you could also copy images from iPhone and then paste into Typora after setup the location to put image files.
When insert local image...
Typora support copying image files into given folder or web server (require iPic) when insert local images using drag & drop, or from menu bar. Following are instructions on the set-up.
Default behaviors
By default, when you insert or drag & drop a image file into Typora, we will use the path of image file for attribute src
.
Use Relative Path
If you enable Editor
→ Image Insert
→ Use relative path if possible
in preferences panel, and your writing has been saved into a file, then when you drag & drop a local image, the src
attribute will be set as its relative path to current file (folder).
Copy image files to target folder when insert local image
To use this feature, you need to opt-in the option
Allow copy images to given folder
in preferences panel.
One common scenario is to edit *.md
posts in static sites (like Jekyll) using Typora. For example, if the .*md
file is put under _posts
folder while the image files goes into _media
folder, you may want to copy images files into folder _media
when you drag/drop or paste images into Markdown file automatically. Here's how:
Save your file into some path.
-
Enable
Editor
→Image Insert
→Allow copy images to given folder
in preferences panel. -
Select
Edit
→Image Tools
→When Insert Local Images
→Copy Image File to Folder
from menubar, pick the target folder.
In step 3, a new item typora-copy-images-to: {relative path}
will be inserted into the YAML Front Matter block of current document. So you could also manually add typora-copy-images-to property in YAML Front Matter to enable this behaviour.
After that, if you drag & drop local images or paste images into Typora, the image file will be copied into the target file and update related src
.
Upload image file to web server. (macOS only)
Requirements: macOS ≥ 10.11 and iPic to be installed. Also, you need to enable
Allow upload to given server
in preferences panel.Warning: By default, iPic will upload images to a public web server anonymously, and you won't be able to delete image files from that web server once you upload into it. So please config iPic in advance if you want to enable this feature and control all image files you uploaded.
Here's how to enable this function:
- Install iPic and config a proper online image service.
- Enable
Editor
→Image Insert
→Allow copy images to given folder
in preferences panel. - Check item
Edit
→Image Tools
→When Insert Local Images
→Upload Image via iPic
from menubar.
In step 3, a new item typora-copy-images-to: ipic
will be inserted into the YAML Front Matter block of current document.
So you could also manually add typora-copy-images-to: ipic property in YAML Front Matter to enable this behaviour.
Tips: If you want to move image file to folder ipic
, you should use typora-copy-images-to: ./ipic
.
Display images in relative path
Relative path to current file/folder (default behavior)
By default, users could refer to local image by relative path to current *.md
file. For example, if the *.md
file is at /User/typora/desktop/test.md
, then the ![](image.png)
will display image from /User/typora/desktop/image.png
just like the <img>
tag in HTML. Also, for ../download/image.png
, image from /User/typora/download/image.png
will be fetched.
Relative path to certain folder
If you’re using markdown for building websites, you may specify a url prefix for image preview in local computer with property typora-root-url
in YAML Front Matters.
For example, input typora-root-url:/User/Abner/Website/typora.io/
in YAML Front Matters, and then ![](/blog/img/test.png)
will be treated as ![](file:///User/Abner/Website/typora.io/blog/img/test.png)
in typora.
In new version, instead of manually input typora-root-url
property, you could just click item from menubar Edit
→ Image Tools
→ Use Image Root Path
to tell Typora to generate typora-root-url
property automatically.
Upload images to cloud server (macOS only)
Introduction to iPic
iPic is an app which allows you to upload local images into various cloud service, including Imgur, Flickr, Amazon S3, etc, and return you a web url of the uploaded image for public access. You could find detailed documents here.
With the integration of iPic, users could share markdown file to others without packaging local images along with the plain text file. And users can stop caring about where to put local images or how to refer local images using relative path, since they can simply upload used images into cloud server.
System requirements and preparation
- This feature only supports macOS ≥ 10.11.
- Must install latest version of iPic.
- Configure web server in iPic.
Upload all local images to cloud server
Typora provides a function to upload all local images to cloud server via iPic. To use it, simply, check Edit
→ Image Tools
→ Upload Local Images via iPic
from menubar and wait for the uploading process to be finished.
Upload when inserting images
How-tos for this part can be found in section When insert local image… → Upload image file to web server. (macOS only).
Align images
Currently Typora does not support image alignment. But you could use HTML code like <center>![](src)</center>
to align images on exported HTML or PDF.
Also, by default, if one paragraph only contains one image, it will be center aligned. It is controlled by CSS, and can be reverted by add custom CSS:
p .md-image:only-child{
width: auto;
text-align: inherit;
}
Resize images
Please check this link.