jeethu 1 points, posted 1 year, 5 months 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 ) { |