Peter Johnson
Peter Johnson
There would also need to be an option to set PasHi's verbosity level from the UI for this to be valuable. It would be helpful to have a special message...
See also issue #59 which proposes displaying the command line passed to PasHi. Could the two views be combined?
> We would have to decide how to respond to `--embed-css -` if no default CSS file had been set with `--default-css-file`. We could either raise an exception or use...
Note that `--default-css-file` would need to be the only command on the command line - it should have its own "execution context" in v3 development speak! `default-css-file` should be blacklisted...
> ⚠️ PasHi installs have an option not to install the CSS files, so the choice to use a default default CSS file could be problematic. So, raising and exception...
> ❓ Should we now make `--default-css-file` affect the working of `--default-css` instead of `--embed-css` and make `--embed-css -` an simply alias for `--default-css`, or should `--default-css` retain its current...
Summarising thoughts so far: The `--embed-css` command should be extended to use following additional parameters: - `#` - embed PasHi's built in style sheet. This is the same as specifying...
Here's an example function ```pascal function Max(const A: array of T; Compare: TComparison): T; overload; begin Assert(Length(A) > 0); Result := A[Low(A)]; for var I := Succ(Low(A)) to High(A) do...
> Here's an example function > > ```pascal > function Max(const A: array of T; Compare: TComparison): T; overload; > begin > Assert(Length(A) > 0); > Result := A[Low(A)]; >...
> ⚠️ **Will need to check if CodeSnip can handle generic routines first.** Can't declare a function or procedure with generic type - instead need to declare a static class...