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
{{#Front}} | |
<script defer> | |
function lerp(start, stop, amt) { | |
return (1 - amt) * start + amt * stop; | |
} | |
// Function to estimate text width using canvas | |
function estimateTextWidth(text, fontSize) { | |
const canvas = document.createElement('canvas'); | |
const ctx = canvas.getContext('2d'); |
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
uuidgen | sed s/-//g | sed s/\n//|pbcopy |