Gazler / githug

Git your game on!
MIT License
6.86k stars 1.03k forks source link

Quotation marks used in level's descriptions/hints #120

Closed Tanner closed 11 years ago

Tanner commented 11 years ago

I notice while doing #119 that the quotation mark used in level descriptions/hints changes is different. Some use ' and some use ```.

remote_url.rb hint:

You can run `git remote --help` for the man pages.

bisect.rb description:

A bug was introduced somewhere along the way.  You know that running 'ruby prog.rb 5' should output 15.  You can also run 'make test'.  What are the first 7 chars of the hash of the commit that introduced the bug.

blame.rb description:

Someone has put a password inside the file 'config.rb' find out who it was.

hint:

You want to research the `git blame` command.

I'd make a pull request, but I wanted to make sure that it was the "right way".

What is the correct quotation mark for... files? e.g. add.rb description tags? e.g. tag.rb URLs? commands?

Gazler commented 11 years ago

@Tanner I prefer using backticks ( ` ) for files, tags and commands. If anyone objects with good reason then I am happy to change my mind on it though. No quotes are required for URLs but they should all begin with a valid protocol.

Thanks.