PicList/src/main/utils/pasteTemplate.js

10 lines
188 B
JavaScript
Raw Normal View History

2017-11-28 10:56:15 -05:00
export default (style, url) => {
const tpl = {
'markdown': `![](${url})`,
'HTML': `<img src="${url}"/>`,
'URL': url,
'UBB': `[IMG]${url}[/IMG]`
}
return tpl[style]
}