insert-image-to-atom-project

When you paste an image on the clipboard, the img path is inserted. You can set save destination and wwwroot for each project.

shwld

1,341

1

0.4.0

MIT

GitHub

Insert image to atom project

When you paste an image on the clipboard, the img path is inserted.

You can set save destination and wwwroot for each project.

Grammar supporting snippet insertion

For other grammers, insert image-path.

Inline preview for markdown grammer

Settings

.image-config.json

{
  "storePath": "/images",
  "wwwRoot": "/public"
  "grammars": {
    "Markdown": {
      "url": "![](${url})"
    },
    "GitHub Markdown": {
      "url": "![](${url})"
    },
    "HTML": {
      "url": "<img src=\"${url}\" alt=\"\">"
    }
  }
}