IMO, the main effect this has is to inhibit copy/pasting multiple lines of shell code.
While I can see the argument that it would be a feature, not a bug, to do so, I'm not on board. While I don't run shell code I don't understand - anymore - there's no doubt I would have never learned all I have unless I was able to get somewhere through the use of copy/paste. So I would support leaving the dollar sign out.
Agree with Jon that it's easier to copy-paste if you omit the dollar sign.
However, the commands often aren't written in isolation, eg
If there are multiple commands, then we might mingle in some comments about flow/motivation/purpose.
If the output is significant to the discussion, then we might show it as part of blob.
If you looked at docs I wrote, you'd probably see inconsistent usage of $. But there maybe a hidden rule which I'm following:
If there's output interleaved, then include the $. (This removes ambiguity about input-vs-output.)
If there's no output interleaved, then omit the $. (This is easier to copy paste.) (Exception: if you're in a page where many other blurbs us $, then you might adjust to match them.)
The section "Open the page" is actually pretty carefully considered for readers of multiple perspectives:
Providing the visual output gives enough clues that you should be able to figure the URL by yourself. You don't need cv at all. (And, at this point in this page, there's no guarantee that you have it installed!)
Providing the command gives a fallback -- a way you can figure out more complicated scenarios.
If we just showed one example URL for Drupal, it would be confusing to Joomla/WordPress folks -- they'd incorrectly guess the URL.
Another variation that shows up: sometimes the PWD is indicated.
This is useful since PWD can be significant, and it's a common mistake for novices to mix up their PWD. It pains me to see support requests (there were several in the past) because someone was in the wrong PWD. Showing the PWD helps you error-correct.
The basic defense of the "inconsistent" approach: context matters, and sometimes you need to communicate different things, and it's technically KISS.
In an ideal world, the markdown processor would render input/output/comment lines differently. (eg display $ as a background image; or colorcode lines).
Trying to pursue the latter a bit... this snippet seems interesting.
Based on the comments thus far, I propose adding the following content (everything below) to the Style Guide. I'm open to changing this. I just wrote it up so that we have something concrete to help move this issue forward.
Displaying shell commands
Example of correct usage
Create a new buildkit site with Drupal 7.x and CiviCRM master
Go to the civicrm directory within the site you just created.
cd ~/buildkit/build/drupal-demo/sites/all/modules/civicrm
Note: this directory will vary depending on where you have installed buildkit.
Create a fork of civicrm-core on github.com for publishing your changes
hub fork
Note: At this point you can see that, because of the previous command, your local civicrm repo is now set up to track two separate remote repos — the one owned by CiviCRM, and the one owned by you (which hub just created):
(Tutorial truncated here to keep this example brief)
Guidelines
Do not display comments in shell commands. Instead move your commentary outside of the code block so that it displays as regular paragraph text.
Always keep each shell command in its own code block. Use separate code blocks for separate commands, with paragraph text between the code blocks to explain the steps.
When you don't want to display output from the command (the most common scenario), do not display a command prompt (e.g $ ) before the command.
When you do want to display command output to the reader, include the output in the same code block as the command, and prefix the command with $ to serve as a command prompt.
When it is crucial for the user to understand the directory in which to run the command, include a separate code block before hand with a cd command.
I'm OK with deprecating comments for bash instructions (in favor of interleaved text). Reflecting, the comments were originally a workaround (eg I remember having trouble with interleaved bullet points and code snippets). Your example shows that working nicely with Github's renderer.
@seanmadsen i feel like we have some pretty clear structure with those guidelines, I would also note that i think in some of the recent bash stuff i put in i followed those guidelines iirc
Yeah. but ummm, I think I've changed my mind since writing that large proposal above. This is one of the things I was hoping to address during a docs meeting (which I'm still working on planning).
Now, I actually think that it is easiest if we always use dollar sign prefixes. I can explain more about this.
Building off of my last comment, I propose adding the following content (everything below) to the Style Guide.
Displaying shell commands
Example of correct usage
Create a new buildkit site with Drupal 7.x and CiviCRM master
$ cd ~/buildkit/build/drupal-demo/sites/all/modules/civicrm$ civibuild create drupal-demo --civi-ver master --url http://localhost:8001
Create a fork of civicrm-core on github.com for publishing your changes
$ hub fork
Note: At this point you can see that, because of the previous command, your local civicrm repo is now set up to track two separate remote repos — the one owned by CiviCRM, and the one owned by you (which hub just created):
Right now we have nothing in the style guide, so any style is fine
I think it's fine to add things to the style guide, even if our current docs aren't consistent. The style guide can apply to newly-written doc only. Plus I think it'll be pretty easy to clean up existing code blocks. They're easy to find with grep and there aren't too many of them.