GitHub's markdown renderer helpfully provides a "click to copy" button for code blocks, as highlighted here:
However, the existing installation command includes a preceding $ for stylistic purposes to imply that this command should be run in a terminal. If a user clicks the copy button and pastes directly to the CLI, the command will fail due to the $:
This PR removes the stylistic $ so that the copied install command is precisely npm install skia-canvas and will work as expected.
GitHub's markdown renderer helpfully provides a "click to copy" button for code blocks, as highlighted here:
However, the existing installation command includes a preceding
$
for stylistic purposes to imply that this command should be run in a terminal. If a user clicks the copy button and pastes directly to the CLI, the command will fail due to the$
:This PR removes the stylistic
$
so that the copied install command is preciselynpm install skia-canvas
and will work as expected.