Fix incorrect sample images of ligations

This commit is contained in:
Belleve Invis 2020-04-17 22:35:18 -07:00
parent ada6826685
commit 2e32ddf190
9 changed files with 15 additions and 14 deletions

View file

@ -23,7 +23,8 @@ const logc = TAG("logic");
const brst = TAG("brst");
const trig = TAG("trig");
const ltgt = TAG("ltgt-diamond", "ltgt-ne");
const llggeq = TAG("llggeq");
const llggeq_a = TAG("arrow", "llggeq");
const llggeq_b = TAG("arrow2", "llggeq");
const dotOper = TAG("dotoper");
const kernDotty = TAG("kern-dotty");
const htmlComment = TAG("html-comment");
@ -57,7 +58,7 @@ const ligationSamples = [
arrow2("=<="),
arrow("<=="),
arrow("<==="),
llggeq("<<="),
llggeq_a("<<="),
ineq("<="),
arrow("=>"),
arrow("=>>"),
@ -65,7 +66,7 @@ const ligationSamples = [
arrow("===>"),
arrow2("=>="),
ineq(">="),
llggeq(">>="),
llggeq_b(">>="),
arrow("<=>"),
arrow("<==>"),
arrow("<===>"),
@ -146,7 +147,7 @@ const ligationSamplesNarrow = [
[
arrow("<=="),
arrow("<==="),
llggeq("<<="),
llggeq_a("<<="),
ineq("<="),
arrow("<=>"),
arrow("=>"),
@ -161,7 +162,7 @@ const ligationSamplesNarrow = [
arrow2("=<="),
arrow2("=>="),
ineq(">="),
llggeq(">>="),
llggeq_b(">>="),
arrow("<==>"),
arrow("<===>"),
arrow("<====>")