jeethu 1 points, posted 11 months, 3 weeks ago [+] (0 children)
| Text | Output |
|---|---|
| *italics* | italics |
| **bold** | bold |
| [tagz](http://tagz.in) | tagz |
|
* item1 * item2 * item3 |
|
| > quoted text |
|
[code:javascript]
function makeIncrementer( x ) {
return function() {
return x++;
}
}
[/code]
|
function makeIncrementer( x ) { |