samizdatco / skia-canvas

A GPU-accelerated 2D graphics environment for Node.js
MIT License
1.67k stars 63 forks source link

Remove $ from install command documentation #158

Open tvanantwerp opened 5 months ago

tvanantwerp commented 5 months ago

GitHub's markdown renderer helpfully provides a "click to copy" button for code blocks, as highlighted here:

image

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 $:

image

This PR removes the stylistic $ so that the copied install command is precisely npm install skia-canvas and will work as expected.