Remove `=` where ever it's possible
Opened this issue · 5 comments
As the style guide instructs, pages should prefer --option argument instead of --option=argument.
https://github.com/tldr-pages/tldr/blob/main/contributing-guides/style-guide.md#option-syntax
If you feel like helping out, you can run grep -r = | grep \` in a page folder and start testing which of the = characters can be replaced. Some options require =, so they need to be individually tested.
If this is still open, can I take over this task? And can you specify the scope of this task? Which commands am I to check of this condition? Should I check for random commands? Or is there a list of commands this has to be done somewhere?
Nothing to take over. Just shoot us a PR of any page you find.
dd is the one command I remember always uses =
pages.es/osx/tart.md lines 16 and 24 have the following
line 16 tart create --from-ipsw={{ultima|ruta/al/archivo.ipsw}} {{nombre-de-la-vm}}
line 24 tart run --dir={{ruta/al/directorio}}:{{ruta/a/directorio local}} {{nombre-de-la-vm}}
Please bare with me if “=“ is required in this case, I'm merely just learning about the codebase overall, thank you
All you have to do is test. If it works without =, then it can be removed.