0.0.3 • Published 10 years ago

nl2br v0.0.3

Weekly downloads
4,852
License
MIT
Repository
github
Last release
10 years ago

nl2br

nl2br - A NodeJS module for converting newlines to line breaks

Based on this answer in StackOverflow

##Install

$ npm install nl2br

Example

var nl2br  = require('nl2br');

// XHTML Way
nl2br('Base\nballs');  // returns 'Base<br/>balls'

// Non-XHTML Way
nl2br('Base\nballs', false);  // returns 'Base<br>balls'