This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
teemant-old/src/script/meta.js

13 lines
340 B
JavaScript

const metafunctions = {
hexcolor: {regex: /#([A-F0-9]{3}([A-F0-9]{3})?)\b/gi, replacer: (function (line, regxp) {
return line.replace(regxp, (color) => {
return '<span class="color_preview">' + color +
'<div class="little_icon" style="background-color: "' + color + ';">&nbsp;</div></span>';
});
})}
};
module.exports = {
};