dspinellis / git-issue

Git-based decentralized issue management
GNU General Public License v3.0
776 stars 66 forks source link

Fix whitespace in git-issue.1. #78

Closed HugoNikanor closed 4 years ago

HugoNikanor commented 4 years ago

Man pages require no leading whitespace for a line to be wrapped to the one preceding it. These commits update sync-docs.sh to remove that whitespace, update the README to keep the lists working, and finally add an updated git-issue.1.

dspinellis commented 4 years ago

Thank you! There still seems to be a failure with sync-docs.sh.

HugoNikanor commented 4 years ago

I can't figure out why the test fails. It appears to have something to do with sed on MacOS, but I don't have access to any MacOS machines for further testing.

Any ideas?

dspinellis commented 4 years ago

I'm the author of the sed running on macOS, so yes I have an idea. The regular expressions it provides are the basic ones, not the extended ones. A quick view shows me that your using ^ \+. Change this into the equivalent ^ * (with two spaces).

HugoNikanor commented 4 years ago

That seems to have worked.

dspinellis commented 4 years ago

Excellent, thank you!