https://github.com/panjiachen/get-markdown-images
:floppy_disk: get all images from markdown
https://github.com/panjiachen/get-markdown-images
Last synced: 4 months ago
JSON representation
:floppy_disk: get all images from markdown
- Host: GitHub
- URL: https://github.com/panjiachen/get-markdown-images
- Owner: PanJiaChen
- License: mit
- Created: 2019-10-15T07:28:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-20T10:09:27.000Z (over 5 years ago)
- Last Synced: 2025-03-19T00:39:11.562Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 11
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# get-markdown-images
get all images from markdown
![]()
## Usage
```bash
npx get-markdown-images --inputDir='./docs'
```OR
```bash
npm install get-markdown-images
``````js
const { downloadImages } = require('get-markdown-images')downloadImages({
inputDir: './docs'
})
```