Created
August 4, 2020 15:11
-
-
Save nikolaswise/a3c536b1817fc83cbe24f783bf83c888 to your computer and use it in GitHub Desktop.
Plugin for MarkdownIt (https://github.com/markdown-it/markdown-it) that turns markdown image syntax into Figure tags with syntax for responsive image sizes via lazysizes: https://afarkas.github.io/lazysizes/index.html, http://afarkas.github.io/lazysizes/rias/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const splitCDN = (uri) => { | |
let imgArr = uri.split('/') | |
let filename = imgArr.pop() | |
let size = imgArr.pop() | |
let base = imgArr.join('/') | |
return { base, size, filename } | |
} | |
const getCDNBase = (uri) => { | |
let { base } = splitCDN(uri) | |
return base | |
} | |
const getCDNSize = (uri) => { | |
let { size } = splitCDN(uri) | |
return size | |
} | |
const getCDNfilename = (uri) => { | |
let { filename } = splitCDN(uri) | |
return filename | |
} | |
const smImg = (md, config = {}) => (tokens, idx, options, env, self) => { | |
let token = tokens[idx] | |
let srcIndex = token.attrIndex('src') | |
let url = token.attrs[srcIndex][1] | |
let alt = md.utils.escapeHtml(token.content) | |
let urlBase = getCDNBase(url) | |
let filename = getCDNfilename(url) | |
return ` | |
<figure class="figure"> | |
<picture> | |
<img | |
class="figure-image lazyload" | |
src="${urlBase}/180x180/${filename}" | |
data-optimumx="1.6" | |
data-src="${urlBase}/{width}x5000/${filename}" | |
data-sizes="auto" | |
alt="${alt}" /> | |
</picture> | |
</figure> | |
` | |
} | |
const mdsm = (md, config) => { | |
md.renderer.rules.image = smImg(md, config) | |
} | |
export default mdsm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment