wincent / masochist

⛓ Website infrastructure for over-engineers
MIT License
78 stars 26 forks source link

Double dot renders as an ellipsis (three periods) character on website #150

Closed andyneff closed 4 years ago

andyneff commented 4 years ago

When reading the git rules, I was confused as to why a "double dot" was a three period ellipsis character instead

https://github.com/wincent/masochist/blame/614e6c960fd8b114b1d60c550d663c354311aa5d/content/wiki/Legal%20Git%20branch%20names.md#L11 appears to be right, however something in between converts it to the … character instead on https://wincent.com/wiki/Legal_Git_branch_names

I'm not sure what is causing this, so I can't make a PR to fix it.

wincent commented 4 years ago

That'll be a quirk of the Markdown parsing. I think the fix will be to surround it in backticks instead of double quotes.

wincent commented 4 years ago

Yep, backtick-quoting seems to have fixed it. Thanks for reporting @andyneff.