Remve ` from console-formatted strings because we can't really render them properlyn anyway (most console have a monospaced font by default).
Details
Details
Diff Detail
Diff Detail
- Repository
- rPHU libphutil
- Branch
- master
- Lint
Lint Passed - Unit
Tests Passed - Build Status
Buildable 9050 Build 10645: Run Core Tests Build 10644: arc lint + arc unit
Event Timeline
Comment Actions
Really what we should do here is ensure that text within backticks is formatted literally. This would solve the issue described in D14563#164583. I'm not really sure how to go about this though.
Comment Actions
I think it's fine/desirable to emit this literal text onto the console:
Run `ls -l` to see files in the current directory.
Specifically, even when not marked up, this is more clear than:
Run ls -l to see files in the current directory.
...since it points out the ends of the token and which parts are and are not components of the command.
I think there's a different fix for D14563#164583, let me look at that.