Contribution are most welcome! All tldr
pages are stored in Markdown right here on GitHub. Just open an issue or send a pull request and we'll merge it as soon as possible.
Note: when submitting a new command, don't forget to check if there's already a pull request in progress.
When setting up a brand new fork, run make setup
to install the git pre-commit hook that will rebuild the index every time you commit your changes. You can also rebuild it manually by running make index
. The script requires Ruby to run. Make sure you have the index in place as we will need it as part of your commit in order to pull in your changes.
Note that tldr
is focussed on concrete examples.
Here's a few guidelines to get started:
man
is forToken formatting:
{{token}}
syntax, for example tar cf {{file}}
{{source_file}}
) or short descriptive examples ({{wallet.txt}}
)Common pitfalls / "donts"
man
)tar {{options}}
tar {{c or x}}
)The best way to be consistent is to have a look at a few existing pages :)
For now, the format of each page has to match the following:
# command-name
> Short description
> Max 1 or 2 lines
- example description
`command -arg1 -arg2`
- example description
`command -arg1 -arg2`
Eventually we might relax the format to accept any Markdown, but for now this has the advantage of adding some consitency between all pages, and making sure we focus on concrete examples rather than lengthy explanation of the different flags.
The current format also works well for command-line clients that need to extract a single description/example.
Footnote: tldr is under MIT license.
You're free to modify or redistribute the content. That being said, but why not contribute over here? :) Say if you wanted to have tldr
pages in groff
format, why not have a client that uses pandoc and periodically updates straight from this repo?