Lively markdown support -- immediate rendering A small improvement over the plain markdown morph.
Markdown rendering
X

Menu

This is markdown text

To edit it please edit the text to the right. Changes get immediately applied.

Markdown is a simple to read and write markup syntax that is great for structured content and displaying code, both inline and formatted:

this.foo();
bar();

You can find a syntax overview here. The JavaScript-based rendering is implemented by showdown.js.


Images:

Lists:

  1. this
  2. is
  3. a simple
  4. list
    • this is nested
    • simply by indenting

buttons and inputs

Markdown editor
X

Menu
## This is markdown text
To edit it please edit the text *to the right*. Changes get immediately applied.
Markdown is a simple to read and write markup syntax that is great for structured content and displaying code, both `inline` and formatted:
    this.foo();
    bar();
You can find a syntax overview [here](http://daringfireball.net/projects/markdown/syntax). The JavaScript-based rendering is implemented by [showdown.js](https://github.com/coreyti/showdown).
* * *
#### Images:
![](http://lively-kernel.org/repository/webwerkstatt/media/hpi_logo_wb_rhi.png)
#### Lists:
1. this
2. is
3. a simple
4. list
    * this is nested
    * simply by indenting
#### buttons and inputs
<button onclick="alert('test')">test</button>
<form>
<input type="text" size="30"/>
</form>
X