Pointy: Tag = ...

Options for replacing tags using hand emojis pointing in at the variable (๐Ÿ‘‰ ๐Ÿ‘ˆ). Matches tags of the form ๐Ÿ‘‰variable๐Ÿ‘ˆ in the text.

Example

// Example usage:
const text = 'Hello ๐Ÿ‘‰variable๐Ÿ‘ˆ';
const result = replaceTags(text, { variable: 'world' }, Pointy);
console.log(result); // Output: 'Hello world'

Generated using TypeDoc