ooyala / barkeep

The friendly code review system.
getbarkeep.org
1.42k stars 145 forks source link

Strings like <foo> in comments don't show up. #462

Closed shuangwu closed 11 years ago

cespare commented 11 years ago

Barkeep comments are formatted in markdown. Most HTML tags (anything enclosed in < and >) are removed from the text.

What you probably want to do is use an inline code block with backticks:

`<foo>`

That will be rendered like this: <foo>. Anything inside a code block is rendered verbatim.

If you really want to write <foo>, you'll need to use the HTML entities &lt; and &gt;:

&lt;foo&gt;