Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/q42/meteor-autoform-markdown

A simple markdown textarea with preview using perak:markdown
https://github.com/q42/meteor-autoform-markdown

autoform javascript markdown markdown-textarea meteor

Last synced: 2 months ago
JSON representation

A simple markdown textarea with preview using perak:markdown

Awesome Lists containing this project

README

        

autoform-markdown
========

A simple markdown textarea with preview using perak:markdown

Demo
-----
Checkout http://autoform-markdown.meteor.com/

Usage
-----

Add a custom template in your Schema

```
Schemas.Quest = new SimpleSchema({
title: {
type: String
},
text: {
type: String,
autoform: {
type: 'markdown'
}
}
});
```

Render markdown text using the renderMarkdown helper in your template

```

{{title}}


{{{renderMarkdown text}}}

```

For more info and usage see: https://github.com/chjj/marked#usage