There are some small improvements for commenters on this blog:
- You can insert inline latex in your comments using $$\latex \code{here}$$.
- You can insert a latex box in your comments using $$!\latex \code{here}$$. You should always leave at leas one black line after this box.
- You can insert code snippets without syntax highlighting but at least with whitespace preserved using backticks around your code. Always surround it by at least one blank line before and after the code.
Examples:
What you type
What you get
Inline latex: $$\alpha > \beta$$
Inline latex:
Block latex: $$!\frac{\alpha}{\pi}$$
Note the blank line above!
Block latex:
Note the blank line above!
Code follows after a blank line:
`x :: a -> a
x a
| a > 0 = a
| a < 0 = -a`
Note the blank line above.
Code follows after a blank line:
x :: a -> a
x a
| a > 0 = a
| a < 0 = -a
Note the blank line above.
--
Crossposted from
~~. Go to
original post for comments.