| 12345678910 |
- 'use strict';
- var form = require('express-form')
- , field = form.field;
- module.exports = form(
- field('markdownSetting[markdown:isEnabledLinebreaks]').trim().toBooleanStrict(),
- field('markdownSetting[markdown:isEnabledLinebreaksInComments]').trim().toBooleanStrict()
- );
|