0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-05 01:32:47 +00:00
Files
homebrewery/themes/V3/Blank/snippets/imageMask.gen.js
2023-01-31 16:00:31 -05:00

28 lines
685 B
JavaScript

const _ = require('lodash');
const dedent = require('dedent-tabs').default;
module.exports = {
edge : ()=>{
return dedent`
{{imageMask${_.random(1, 8)},--offset:0cm,--rotation:0
![](https://i.imgur.com/GZfjDWV.png){height:100%}
}}
<!-- Use --offset to shift the edge up or down from the page center.
Use --rotation to set rotation angle in degrees. -->\n\n`;
},
corner : ()=>{
return dedent`
{{imageMask_Corner${_.random(1, 8)},--offset:0cm,bottom,left
![](https://i.imgur.com/1w5khYt.png){height:100%}
}}
<!-- Use offset to shift the edge up or down.
Use top, bottom, left, and right to select a corner -->\n\n`;
}
};
()=>{
};