https://github.com/architect/markdown-it-arc-static-img
Adds arc static paths to img tag src attributes when parsing markdown
https://github.com/architect/markdown-it-arc-static-img
Last synced: 5 months ago
JSON representation
Adds arc static paths to img tag src attributes when parsing markdown
- Host: GitHub
- URL: https://github.com/architect/markdown-it-arc-static-img
- Owner: architect
- License: apache-2.0
- Created: 2021-05-25T18:31:55.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-08-15T01:52:10.000Z (almost 2 years ago)
- Last Synced: 2025-08-20T04:54:13.551Z (10 months ago)
- Language: JavaScript
- Size: 180 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# markdown-it-arc-static-img
Adds arc static paths to img tag src attributes when parsing markdown
## Usage
```js
const arcStaticImg = require('markdown-it-arc-static-img')
const md = require('markdown-it')()
.use(arcStaticImg)
const imgMD = ''
const result = md.render(imgMD)
```