Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0-rc.4/handlebars.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/ember.js/1.0.0-rc.4/ember.js"></script>
  <script src="//cdnjs.cloudflare.com/ajax/libs/showdown/0.3.1/showdown.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <script type="text/x-handlebars">
  {{hello-message name="John"}}
  <hr>
  {{timer}}
  <hr>
  {{todo-app}}
  <hr>
  {{markdown-editor}}
  </script>
  
  <script type="text/x-handlebars" id="todo-app">
  <h3>TODO</h3>
  <form {{action addItem on="submit" target="view"}}>
    {{input type="text" value=newItem}}
    <button type="submit">Add</button>
  </form>
  <ul>
  {{#each items}}
    <li>{{this}}</li>
  {{/each}}
  </ul>
  </script>
  
  
  <script type="text/x-handlebars" id="markdown-editor">
  <div className="MarkdownEditor">
    <h2>Markdown Editor</h2>
    <h3>Input</h3>
    {{textarea value=value}}
    <h3>Output</h3>
    <div className="content">{{markdown value}}</div>
  </div>
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ryanflorencepro
0viewers