10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-12-25 13:53:48 +01:00

Fix π->π* parsing

This commit is contained in:
Mickaël Véril 2020-01-07 09:28:41 +01:00
parent c38cf55e79
commit 05e39690e0

View File

@ -129,7 +129,7 @@ class excitationBase {
} }
if (initialts.includes("n") && finalts.includes(String.raw`\pi^\star`)) { if (initialts.includes("n") && finalts.includes(String.raw`\pi^\star`)) {
this.type.Value = this.type | excitationTypes.nPis this.type.Value = this.type | excitationTypes.nPis
} else if (initialts.includes(String.raw`\pi`) in initialts && finals.includes(String.raw`\pi^\star`)) { } else if (initialts.includes(String.raw`\pi`) && finalts.includes(String.raw`\pi^\star`)) {
this.type.Value = this.type | excitationTypes.PiPis this.type.Value = this.type | excitationTypes.PiPis
} }
} else if (ty.includes(String.raw`\mathrm{R}`)) { } else if (ty.includes(String.raw`\mathrm{R}`)) {