diff --git a/src/truth-table.tsx b/src/truth-table.tsx index ceb6959..569efee 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -67,7 +67,10 @@ const TruthTablePage: Component = () => { */ function onClick(e: { preventDefault: () => void; }): void { e.preventDefault(); // Stops the page from reloading onClick - const exp = getInputElement()?.value; + let exp = getInputElement()?.value; + + exp = exp.replaceAll("|", "/") + if (exp) { history.pushState(null, "", `?exp=${ encodeURIComponent(exp) }`); getFetchResult(exp).then(null); @@ -143,15 +146,34 @@ const TruthTablePage: Component = () => {
-

{ "truthTableHowTo" /*TODO*/ }

+

{ `Fill in a truth expression and it will be simplified for you as much as possible. + It will also genereate a truth table with all possible values. You can use a single letter, + word or multiple words without spacing for each atomic value. + If you do not want to simplify the expression, simply turn off the toggle. + Keywords for operators are defined below. Parentheses is also allowed` }

- <> -

not

-

and

-

or

-

implication

- + + + + + + + + + + + + + + + + + + + + +
Not:!
And:&
Or:|/
Implication:{ "->" }