Ligature Test Fixture
· 1 min read
This post exists to verify that Fira Code ligatures render in code blocks.
// Arrow functions with =>
const add = (a: number, b: number) => a + b;
// Strict equality
if (x !== y && a === b) {
console.log("ligatures active");
}
// Comparison operators
const check = (a: number) => a >= 10 && a <= 100;
// Not equal
if (a != b) return false;
// Type annotations
const map: Map<string, number> = new Map(); Inline code with ligatures: const fn = () => x !== y
Related Posts
Comments
Loading comments...

