Skip to content
Great Blue Heron

Trans: Latin prefix implying “across” or “Beyond”, often used in gender nonconforming situations Scend: Archaic word describing a strong “surge” or “wave”, originating with 15th century english sailors Survival: 15th century english compound word describing an existence only worth transcending

Jess Sullivan

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...