tealdeer-rs / tealdeer

A very fast implementation of tldr in Rust.
https://tealdeer-rs.github.io/tealdeer/
Apache License 2.0
4.17k stars 123 forks source link

Docs: Fix typo (irregular space → regular space) #310

Closed YDX-2147483647 closed 1 year ago

YDX-2147483647 commented 1 year ago

It was a no-break space (U+00A0,  ), which causes mdBook to ignore the line break and render wrongly.

Instead, a regular space (U+0020) should be used.

Before

After

YDX-2147483647 commented 1 year ago

I guess #305 introduces this by accident.

niklasmohrin commented 1 year ago

Thanks!

You are right, the next line is treated as if the bullet point goes on because there is no distinct - there. Actually, after the "Scoop", there is another weird space.

Before your PR: image After your PR: image

Could you fix the second one as well?

YDX-2147483647 commented 1 year ago

😺 I didn't notice that. Fixed.