robotpony / Presto

Simple tools for building RESTfull interfaces. This is an old and unmaintained project.
http://presto.napkinware.ca
Other
11 stars 3 forks source link

Add `:markdown` type to DB auto-typing #92

Open ghost opened 11 years ago

ghost commented 11 years ago

Add a :markdown type to the DB wrapper object hinting path.

Example:

SELECT 
    text AS `item.description:markdown`
FROM someTable;

This would produce an object that looks like:

"item": { 
    "description": "<h1>This used to be markdown</h1>"
}